dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 3fb8e42fc61dff234ea7a28e19dbcd39b5959eed
parent 56572e8960863ea31e233c8184cc8fa3afb92bd6
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Sat,  2 Jan 2021 19:54:03 +0100

set-theme: fix path to wal

Diffstat:
Mscripts/set-theme | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/set-theme b/scripts/set-theme @@ -46,9 +46,9 @@ EOF set_terminal_and_wallpaper() { if [ "$1" = "light" ]; then - /usr/local/bin/wal --saturate 0.8 -i "$(realpath ~/Pictures/Backgrounds/light.jpg)" -l; + /Users/alex/.local/bin/wal --saturate 0.8 -i "$(realpath ~/Pictures/Backgrounds/light.jpg)" -l; else - /usr/local/bin/wal -i "$(realpath ~/Pictures/Backgrounds/dark.jpg)"; + /Users/alex/.local/bin/wal -i "$(realpath ~/Pictures/Backgrounds/dark.jpg)"; fi }