diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-05-09 00:02:33 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-05-09 00:02:33 +0200 |
commit | 4cadb19a3cbb342fdb7256f182a5e3a682a17cb2 (patch) | |
tree | 7a855398b1c7c39d5d98dd9c311173296afa9746 /bin/guiscripts | |
parent | 3692a291fbc9e3a0aaaf6e847cf7ef2a1072e9fd (diff) |
added nordtheme script!
Diffstat (limited to 'bin/guiscripts')
-rwxr-xr-x | bin/guiscripts/nordtheme | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/guiscripts/nordtheme b/bin/guiscripts/nordtheme new file mode 100755 index 0000000..898c5d5 --- /dev/null +++ b/bin/guiscripts/nordtheme @@ -0,0 +1,14 @@ +#!/bin/sh +if test -z "$1" +then + ln -sf /usr/share/foot/themes/nord ~/.config/foot/colors + ln -sf ~/.config/waybar/colors/colors-nord ~/.config/waybar/colors.css + ln -sf ~/pics/wallpapers/nord/nord_background3.jpg ~/pics/wallpaper + swaybg -i ~/pics/wallpaper & + pkill -USR2 waybar + sed -i 's/ColorMyPencils("[^"]\+")/ColorMyPencils("nord")/g' ~/.config/nvim/after/plugin/colors.lua +else + ln -sf ~/.cache/wal/colors-waybar.css ~/.config/waybar/colors.css + newwal + sed -i 's/ColorMyPencils("[^"]\+")/ColorMyPencils("pywal")/g' ~/.config/nvim/after/plugin/colors.lua +fi |