Added all current configs that I see are important

This commit is contained in:
ManOfGoldForever 2025-11-12 16:35:56 -05:00
parent 7e2ddc1054
commit d9bed25ebc
48 changed files with 4854 additions and 35 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash
WALLPAPER_DIR="/mnt/data/Wallpapers"
WALLPAPERS=$(find "$WALLPAPER_DIR" -type f \( -iname "*.jpg" -o -iname "*.png" -o -iname "*.jpeg" \))
SELECTED_WALLPAPER=$(echo "$WALLPAPERS" | rofi -dmenu -i -p "Select Wallpaper:")
if [ -n "$SELECTED_WALLPAPER" ]; then
fish -c "swww_set_wallpaper '$SELECTED_WALLPAPER'"
fi