diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-11-09 21:50:12 +0100 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-11-09 21:50:12 +0100 |
commit | 53acadfa34f0b8fcc79d0f34c21e5ae68b816516 (patch) | |
tree | 6d7b1e8a98aa82b8e23f5d96e0fbe13360776a2e /.local/bin | |
parent | 20b7159e880d689cf27094986f3d1579e8db1da5 (diff) |
init: minor cleanup
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/dock | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.local/bin/dock b/.local/bin/dock index 9be72c1..8d39930 100755 --- a/.local/bin/dock +++ b/.local/bin/dock @@ -19,16 +19,16 @@ dock () { barpos bottom xrandr --output HDMI-1 --mode 2560x1440 --rate 70 --primary xrandr --output eDP-1 --off - xwallpaper --center "$XDG_CONFIG_HOME/wallpaper/bg" - betterlockscreen -u "$XDG_CONFIG_HOME/wallpaper/lock" >/dev/null 2>&1 & + xwallpaper --center ~/.local/share/bg + betterlockscreen -u ~/.local/share/lock >/dev/null 2>&1 & } undock () { barpos top xrandr --output eDP-1 --mode 1920x1080 --primary xrandr --output HDMI-1 --off - xwallpaper --center "$XDG_CONFIG_HOME/wallpaper/bg" - betterlockscreen -u "$XDG_CONFIG_HOME/wallpaper/lock" >/dev/null 2>&1 & + xwallpaper --center ~/.local/share/bg + betterlockscreen -u ~/.local/share/lock >/dev/null 2>&1 & } main "$@" |