Hyprland-dotfiles/scripts/updatewal-swww.sh

45 lines
1.8 KiB
Bash
Raw Normal View History

2023-08-17 10:59:28 -04:00
#!/bin/bash
2023-08-17 11:44:09 -04:00
# _____ _ ______ ____ ____ __
# |_ _| |__ ___ _ __ ___ ___ / ___\ \ / /\ \ / /\ \ / /
# | | | '_ \ / _ \ '_ ` _ \ / _ \ \___ \\ \ /\ / / \ \ /\ / / \ \ /\ / /
# | | | | | | __/ | | | | | __/ ___) |\ V V / \ V V / \ V V /
# |_| |_| |_|\___|_| |_| |_|\___| |____/ \_/\_/ \_/\_/ \_/\_/
#
#
# by Stephan Raabe (2023)
# -----------------------------------------------------
2023-08-17 10:59:28 -04:00
2023-08-17 11:44:09 -04:00
# -----------------------------------------------------
# Select random wallpaper and create color scheme
# -----------------------------------------------------
2023-08-17 10:59:28 -04:00
wal -q -i ~/wallpaper/
2023-08-17 11:44:09 -04:00
# -----------------------------------------------------
# Load current pywal color scheme
# -----------------------------------------------------
2023-08-17 10:59:28 -04:00
source "$HOME/.cache/wal/colors.sh"
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
# Copy selected wallpaper into .cache folder
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
2023-08-30 08:45:03 -04:00
cp $wallpaper ~/.cache/current_wallpaper.jpg
2023-08-20 05:46:46 -04:00
2023-08-17 11:44:09 -04:00
# -----------------------------------------------------
# get wallpaper iamge name
# -----------------------------------------------------
newwall=$(echo $wallpaper | sed "s|$HOME/wallpaper/||g")
2023-08-17 10:59:28 -04:00
2023-08-17 11:44:09 -04:00
# -----------------------------------------------------
# Set the new wallpaper
# -----------------------------------------------------
swww img $wallpaper --transition-step 20 --transition-fps=20
2023-08-28 07:33:53 -04:00
~/dotfiles/waybar/launch.sh
2023-09-18 15:03:03 -04:00
sleep 1
2023-08-20 05:46:46 -04:00
# -----------------------------------------------------
# Send notification
# -----------------------------------------------------
2023-09-20 07:56:57 -04:00
notify-send "Colors and Wallpaper updated" "with image $newwall"
2023-08-17 10:59:28 -04:00
2023-08-20 05:46:46 -04:00
echo "DONE!"