Adding PC config stuff

This commit is contained in:
2026-07-13 19:25:14 -07:00
parent 6f508ed5c8
commit fcd1af773c
8 changed files with 1752 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
# Related:
# https://gist.github.com/xvzftube/6efabb66c8525eb6e237759ed4972e9c
WALLPAPER_DIR=~/pictures/wallpapers/
# Let user pick out wallpaper
WALLPAPER=$(sxiv -ftqro "$WALLPAPER_DIR")
[ -n "$WALLPAPER" ] && {
feh --no-feh --bg-fill "$WALLPAPER"
} || {
echo "No wallpaper selected. Wallpaper unchanged."
}