Hyprland-dotfiles/scripts/wallpaper-swww.sh

57 lines
2.0 KiB
Bash
Raw Normal View History

2023-08-21 05:38:06 -04:00
#!/bin/bash
# __ __ _ _
# \ \ / /_ _| | |_ __ __ _ _ __ ___ _ __
# \ \ /\ / / _` | | | '_ \ / _` | '_ \ / _ \ '__|
# \ V V / (_| | | | |_) | (_| | |_) | __/ |
# \_/\_/ \__,_|_|_| .__/ \__,_| .__/ \___|_|
# |_| |_|
#
# by Stephan Raabe (2023)
# -----------------------------------------------------
# -----------------------------------------------------
# Select wallpaper
# -----------------------------------------------------
2023-10-02 04:17:11 -04:00
selected=$(ls -1 ~/wallpaper | grep "jpg" | rofi -dmenu -config ~/dotfiles/rofi/config-wallpaper.rasi -p "Wallpapers")
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"
# -----------------------------------------------------
# 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