mirror of
https://github.com/xmonad/xmonad.git
synced 2025-07-28 10:41:53 -07:00
When looking for a directory, prefer ~/.xmonad over XDG BDS
This fixes issue #71
This commit is contained in:
20
CHANGES.md
20
CHANGES.md
@@ -27,24 +27,18 @@
|
||||
- `XMONAD_CACHE_DIR`
|
||||
- `XMONAD_DATA_DIR`
|
||||
|
||||
2. XDG Base Directory Specification directories, if they exist:
|
||||
2. The `~/.xmonad` directory.
|
||||
|
||||
3. XDG Base Directory Specification directories, if they exist:
|
||||
|
||||
- `XDG_CONFIG_HOME/xmonad`
|
||||
- `XDG_CACHE_HOME/xmonad`
|
||||
- `XDG_DATA_HOME/xmonad`
|
||||
|
||||
3. The `~/.xmonad` directory.
|
||||
|
||||
If none of these directories exist then an appropriate directory
|
||||
will be created. If the relevant environment variable mentioned
|
||||
in step (1) above is set, the referent directory will be created
|
||||
and used. Otherwise the relevant XDG directory from (2) will be
|
||||
used.
|
||||
|
||||
Note: If the environment variables mentioned in (1) above are not
|
||||
set, the directories in (2) don't exist, and `~/.xmonad` does
|
||||
exist, the traditional behavior of using `~/.xmonad` for
|
||||
everything will be used.
|
||||
If none of these directories exist then one will be created using
|
||||
the following logic: If the relevant environment variable
|
||||
mentioned in step (1) above is set, the referent directory will be
|
||||
created and used. Otherwise `~/.xmonad` will be created and used.
|
||||
|
||||
This fixes a few issues, notably #7 and #56.
|
||||
|
||||
|
@@ -450,8 +450,8 @@ runOnWorkspaces job = do
|
||||
-- preference:
|
||||
--
|
||||
-- 1. The directory specified in the @XMONAD_CONFIG_DIR@ environment variable.
|
||||
-- 2. The @XDG_CONFIG_HOME/xmonad@ directory.
|
||||
-- 3. The @~\/.xmonad@ directory.
|
||||
-- 2. The @~\/.xmonad@ directory.
|
||||
-- 3. The @XDG_CONFIG_HOME/xmonad@ directory.
|
||||
--
|
||||
-- The first directory that exists will be used. If none of the
|
||||
-- directories exist then (1) will be used if it is set, otherwise (2)
|
||||
@@ -459,8 +459,8 @@ runOnWorkspaces job = do
|
||||
getXMonadDir :: MonadIO m => m String
|
||||
getXMonadDir =
|
||||
findFirstDirWithEnv "XMONAD_CONFIG_DIR"
|
||||
[ getXdgDirectory XdgConfig "xmonad"
|
||||
, getAppUserDataDirectory "xmonad"
|
||||
[ getAppUserDataDirectory "xmonad"
|
||||
, getXdgDirectory XdgConfig "xmonad"
|
||||
]
|
||||
|
||||
-- | Return the path to the xmonad cache directory. This directory is
|
||||
@@ -470,8 +470,8 @@ getXMonadDir =
|
||||
-- Several directories are considered. In order of preference:
|
||||
--
|
||||
-- 1. The directory specified in the @XMONAD_CACHE_DIR@ environment variable.
|
||||
-- 2. The @XDG_CACHE_HOME/xmonad@ directory.
|
||||
-- 3. The @~\/.xmonad@ directory.
|
||||
-- 2. The @~\/.xmonad@ directory.
|
||||
-- 3. The @XDG_CACHE_HOME/xmonad@ directory.
|
||||
--
|
||||
-- The first directory that exists will be used. If none of the
|
||||
-- directories exist then (1) will be used if it is set, otherwise (2)
|
||||
@@ -479,8 +479,8 @@ getXMonadDir =
|
||||
getXMonadCacheDir :: MonadIO m => m String
|
||||
getXMonadCacheDir =
|
||||
findFirstDirWithEnv "XMONAD_CACHE_DIR"
|
||||
[ getXdgDirectory XdgCache "xmonad"
|
||||
, getAppUserDataDirectory "xmonad"
|
||||
[ getAppUserDataDirectory "xmonad"
|
||||
, getXdgDirectory XdgCache "xmonad"
|
||||
]
|
||||
|
||||
-- | Return the path to the xmonad data directory. This directory is
|
||||
@@ -490,8 +490,8 @@ getXMonadCacheDir =
|
||||
-- Several directories are considered. In order of preference:
|
||||
--
|
||||
-- 1. The directory specified in the @XMONAD_DATA_DIR@ environment variable.
|
||||
-- 2. The @XDG_DATA_HOME/xmonad@ directory.
|
||||
-- 3. The @~\/.xmonad@ directory.
|
||||
-- 2. The @~\/.xmonad@ directory.
|
||||
-- 3. The @XDG_DATA_HOME/xmonad@ directory.
|
||||
--
|
||||
-- The first directory that exists will be used. If none of the
|
||||
-- directories exist then (1) will be used if it is set, otherwise (2)
|
||||
@@ -499,8 +499,8 @@ getXMonadCacheDir =
|
||||
getXMonadDataDir :: MonadIO m => m String
|
||||
getXMonadDataDir =
|
||||
findFirstDirWithEnv "XMONAD_DATA_DIR"
|
||||
[ getXdgDirectory XdgData "xmonad"
|
||||
, getAppUserDataDirectory "xmonad"
|
||||
[ getAppUserDataDirectory "xmonad"
|
||||
, getXdgDirectory XdgData "xmonad"
|
||||
]
|
||||
|
||||
-- | Helper function that will find the first existing directory and
|
||||
|
Reference in New Issue
Block a user