changed to setup script to /etc/skel
This commit is contained in:
28
arch_check/.config/hypr/scripts/wallpaper-effects.sh
Executable file
28
arch_check/.config/hypr/scripts/wallpaper-effects.sh
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env bash
|
||||
# __ ______ _____ __ __ _
|
||||
# \ \ / / _ \ | ____|/ _|/ _| ___ ___| |_ ___
|
||||
# \ \ /\ / /| |_) | | _| | |_| |_ / _ \/ __| __/ __|
|
||||
# \ V V / | __/ | |___| _| _| __/ (__| |_\__ \
|
||||
# \_/\_/ |_| |_____|_| |_| \___|\___|\__|___/
|
||||
#
|
||||
|
||||
ml4w_cache_folder="$HOME/.cache/ml4w/hyprland-dotfiles"
|
||||
|
||||
# Get current wallpaper
|
||||
cache_file="$ml4w_cache_folder/current_wallpaper"
|
||||
|
||||
if [ $1 == "reload" ]; then
|
||||
# Releod wallpaper with current effect
|
||||
waypaper --wallpaper $(cat $cache_file)
|
||||
else
|
||||
# Open rofi to select the Hyprshade filter for toggle
|
||||
options="$(ls ~/.config/hypr/effects/wallpaper/)\noff"
|
||||
|
||||
# Open rofi
|
||||
choice=$(echo -e "$options" | rofi -dmenu -replace -config ~/.config/rofi/config-themes.rasi -i -no-show-icons -l 5 -width 30 -p "Hyprshade")
|
||||
if [ ! -z $choice ]; then
|
||||
echo "$choice" >~/.config/ml4w/settings/wallpaper-effect.sh
|
||||
notify-send "Changing Wallpaper Effect to " "$choice"
|
||||
waypaper --wallpaper $(cat $cache_file)
|
||||
fi
|
||||
fi
|
||||
Reference in New Issue
Block a user