2023-08-21 05:38:06 -04:00
|
|
|
#!/bin/bash
|
|
|
|
# __ __ _ _
|
|
|
|
# \ \ / /_ _| | |_ __ __ _ _ __ ___ _ __
|
|
|
|
# \ \ /\ / / _` | | | '_ \ / _` | '_ \ / _ \ '__|
|
|
|
|
# \ V V / (_| | | | |_) | (_| | |_) | __/ |
|
|
|
|
# \_/\_/ \__,_|_|_| .__/ \__,_| .__/ \___|_|
|
|
|
|
# |_| |_|
|
|
|
|
#
|
|
|
|
# by Stephan Raabe (2023)
|
|
|
|
# -----------------------------------------------------
|
|
|
|
|
|
|
|
# -----------------------------------------------------
|
|
|
|
# Select wallpaper
|
|
|
|
# -----------------------------------------------------
|
2023-10-17 02:21:57 -04:00
|
|
|
selected=$(ls -1 ~/wallpaper | grep "jpg" | rofi -dmenu -config ~/dotfiles/rofi/config-wallpaper.rasi)
|
2023-08-21 05:38:06 -04:00
|
|
|
|
|
|
|
if [ "$selected" ]; then
|
|
|
|
|
|
|
|
echo "Changing theme..."
|
|
|
|
# -----------------------------------------------------
|
|
|
|
# Update wallpaper with pywal
|
|
|
|
# -----------------------------------------------------
|
|
|
|
wal -q -i ~/wallpaper/$selected
|
|
|
|
|
|
|
|
# -----------------------------------------------------
|
|
|
|
# Get new theme
|
|
|
|
# -----------------------------------------------------
|
|
|
|
source "$HOME/.cache/wal/colors.sh"
|
|
|
|
|
|
|
|
# -----------------------------------------------------
|
2023-09-10 09:03:00 -04:00
|
|
|
# Copy selected wallpaper into .cache folder
|
2023-08-21 05:38:06 -04:00
|
|
|
# -----------------------------------------------------
|
2023-08-30 08:45:03 -04:00
|
|
|
cp $wallpaper ~/.cache/current_wallpaper.jpg
|
|
|
|
|
2023-08-21 05:38:06 -04:00
|
|
|
newwall=$(echo $wallpaper | sed "s|$HOME/wallpaper/||g")
|
|
|
|
|
|
|
|
# -----------------------------------------------------
|
|
|
|
# Set the new wallpaper
|
|
|
|
# -----------------------------------------------------
|
2023-10-01 05:21:02 -04:00
|
|
|
swww img $wallpaper \
|
|
|
|
--transition-bezier .43,1.19,1,.4 \
|
|
|
|
--transition-fps=60 \
|
|
|
|
--transition-type="random" \
|
|
|
|
--transition-duration=0.7 \
|
|
|
|
--transition-pos "$( hyprctl cursorpos )"
|
|
|
|
|
2023-08-28 07:33:53 -04:00
|
|
|
~/dotfiles/waybar/launch.sh
|
2023-09-18 15:03:03 -04:00
|
|
|
sleep 1
|
2023-08-21 05:38:06 -04:00
|
|
|
|
|
|
|
# -----------------------------------------------------
|
|
|
|
# Send notification
|
|
|
|
# -----------------------------------------------------
|
2023-09-20 07:56:57 -04:00
|
|
|
notify-send "Colors and Wallpaper updated" "with image $newwall"
|
2023-08-21 05:38:06 -04:00
|
|
|
|
|
|
|
echo "Done."
|
|
|
|
fi
|