diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-07-25 00:05:59 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-07-25 00:05:59 +0400 |
commit | 582e896dfd8aa307476f3032422bbd3e66b59af6 (patch) | |
tree | 43eff9fe4a560b950dde5e12f877b74461288d6a /scripts | |
parent | 9f60a2b5ec9ae08d846bc7d3b61612aacadf82c8 (diff) |
bug fix in swall
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/swall | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/swall b/scripts/swall index 6d3b854..fdb7f89 100755 --- a/scripts/swall +++ b/scripts/swall @@ -2,6 +2,7 @@ # TODO add the option error checking with optind + err() { echo "${0}": "${1}" exit 1 @@ -21,7 +22,8 @@ NOTE: default wallpaper directory is ~/.config/wallpapers EOF } -waldir="${XDG_CONFIG_HOME:-$HOME}/.config/wallpapers" +waldir="${HOME}"/.config/wallpapers +# FIXME add xdg home variable while getopts "hcd:" option; do case "${option}" in |