2024-01-02 22:09:02 -05:00
|
|
|
#!/bin/sh
|
2023-02-03 04:08:44 -05:00
|
|
|
|
2023-12-28 04:18:32 -05:00
|
|
|
# Pick a random wallpaper and save a copy
|
2024-01-11 02:29:29 -05:00
|
|
|
wal -esqi ~/Pictures/Wallpapers &&
|
2024-01-02 22:09:02 -05:00
|
|
|
cp "$(awk "{print}" "$HOME/.cache/wal/wal")" ~/.cache/wal/bg &&
|
2023-02-03 04:08:44 -05:00
|
|
|
|
2023-12-28 04:18:32 -05:00
|
|
|
# Update themes for other stuff it it exists
|
2024-01-02 22:09:02 -05:00
|
|
|
([ -x "$(command -v pywalfox)" ] && pywalfox update &
|
|
|
|
[ -x "$(command -v wal-telegram )" ] && wal-telegram -g &
|
|
|
|
[ -x "$(command -v pywal-discord)" ] && pywal-discord &&
|
|
|
|
[ -x "$(command -v beautifuldiscord)" ] && beautifuldiscord --css ~/.config/BetterDiscord/themes) &
|