Hyprland-dotfiles/qtile/scripts/wallpaper.sh

86 lines
2.7 KiB
Bash
Raw Normal View History

2023-03-09 03:25:31 -05:00
#!/bin/bash
# ____ _ _____ _
# / ___| |__ __ _ _ __ __ _ ___ |_ _| |__ ___ _ __ ___ ___
# | | | '_ \ / _` | '_ \ / _` |/ _ \ | | | '_ \ / _ \ '_ ` _ \ / _ \
# | |___| | | | (_| | | | | (_| | __/ | | | | | | __/ | | | | | __/
# \____|_| |_|\__,_|_| |_|\__, |\___| |_| |_| |_|\___|_| |_| |_|\___|
# |___/
#
# by Stephan Raabe (2023)
# -----------------------------------------------------
2023-02-09 04:27:03 -05:00
2023-12-21 05:05:20 -05:00
# Cache file for holding the current wallpaper
cache_file="$HOME/.cache/current_wallpaper"
rasi_file="$HOME/.cache/current_wallpaper.rasi"
# Create cache file if not exists
if [ ! -f $cache_file ] ;then
touch $cache_file
echo "$HOME/wallpaper/default.jpg" > "$cache_file"
fi
# Create rasi file if not exists
if [ ! -f $rasi_file ] ;then
touch $rasi_file
echo "* { current-image: url(\"$HOME/wallpaper/default.jpg\", height); }" > "$rasi_file"
fi
current_wallpaper=$(cat "$cache_file")
2023-11-10 16:12:15 -05:00
case $1 in
# Load wallpaper from .cache of last session
"init")
2023-12-21 05:05:20 -05:00
if [ -f $cache_file ]; then
wal -q -i $current_wallpaper
2023-11-10 16:12:15 -05:00
else
wal -q -i ~/wallpaper/
fi
;;
# Select wallpaper with rofi
"select")
2023-12-20 05:05:15 -05:00
selected=$( find "$HOME/wallpaper" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" \) -exec basename {} \; | sort | while read rfile
do
echo -en "$rfile\x00icon\x1f$HOME/wallpaper/${rfile}\n"
done | rofi -dmenu -replace -l 6 -config ~/dotfiles/rofi/config-wallpaper.rasi)
2023-11-10 16:12:15 -05:00
if [ ! "$selected" ]; then
echo "No wallpaper selected"
exit
fi
wal -q -i ~/wallpaper/$selected
;;
# Randomly select wallpaper
*)
wal -q -i ~/wallpaper/
;;
esac
2023-02-09 04:27:03 -05:00
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
2023-02-09 04:27:03 -05:00
# Reload qtile to color bar
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
2023-02-09 04:27:03 -05:00
qtile cmd-obj -o cmd -f reload_config
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
2023-04-08 10:26:43 -04:00
# Get new theme
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
2023-04-08 10:26:43 -04:00
source "$HOME/.cache/wal/colors.sh"
2023-11-10 16:12:15 -05:00
echo "Wallpaper: $wallpaper"
2023-04-11 04:27:01 -04:00
newwall=$(echo $wallpaper | sed "s|$HOME/wallpaper/||g")
2023-10-02 04:51:16 -04:00
# -----------------------------------------------------
2023-12-21 05:05:20 -05:00
# Write selected wallpaper into .cache files
2023-10-02 04:51:16 -04:00
# -----------------------------------------------------
2023-12-21 05:05:20 -05:00
echo "$wallpaper" > "$cache_file"
echo "* { current-image: url(\"$wallpaper\", height); }" > "$rasi_file"
2023-10-02 04:51:16 -04:00
2023-09-18 16:13:15 -04:00
sleep 1
2023-04-10 11:04:46 -04:00
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
2023-04-08 10:26:43 -04:00
# Send notification
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
2023-09-20 07:56:57 -04:00
notify-send "Colors and Wallpaper updated" "with image $newwall"
2023-03-06 11:55:42 -05:00
echo "Done."