Hyprland-dotfiles/scripts/wallpaper.sh
2023-09-20 13:56:57 +02:00

38 lines
990 B
Bash
Executable File

#!/bin/bash
# __ __ _ _
# \ \ / /_ _| | |_ __ __ _ _ __ ___ _ __
# \ \ /\ / / _` | | | '_ \ / _` | '_ \ / _ \ '__|
# \ V V / (_| | | | |_) | (_| | |_) | __/ |
# \_/\_/ \__,_|_|_| .__/ \__,_| .__/ \___|_|
# |_| |_|
#
# by Stephan Raabe (2023)
# -----------------------------------------------------
# Select wallpaper
selected=$(ls -1 ~/wallpaper | grep "jpg" | rofi -dmenu -p "Wallpapers")
if [ "$selected" ]; then
echo "Changing theme..."
# Update wallpaper with pywal
wal -q -i ~/wallpaper/$selected
# Wait for 1 sec
sleep 1
# Reload qtile to color bar
qtile cmd-obj -o cmd -f reload_config
# Get new theme
source "$HOME/.cache/wal/colors.sh"
newwall=$(echo $wallpaper | sed "s|$HOME/wallpaper/||g")
sleep 1
# Send notification
notify-send "Colors and Wallpaper updated" "with image $newwall"
echo "Done."
fi