Evie Litherland-Smith
83e0b05e96
Upscale default wallpaper (now default.png rather than default.jpg) Set Vanguard to use a local animated wallpaper, as the file is quite big after upscaling so I'm not putting it in this repo... Deleted a bunch of wallpapers files from the repo but they're backed up in syncthing Removed overskride and nm-connection-editor from waybar shortcut, open terminal with bluetoothctl and nmtui respectively instead Move twinkle to only be installed on work machine
10 lines
208 B
Bash
10 lines
208 B
Bash
WALLPAPER_FILE="$HOME/.wallpaper.gif"
|
|
|
|
if [ ! -f "$WALLPAPER_FILE" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
systemctl --user start swww-daemon.service &&
|
|
swww img "$WALLPAPER_FILE" &&
|
|
systemctl --user stop hyprpaper.service
|