Hyprland-dotfiles/hypr/settings/modules/sddm/background/module.sh

31 lines
1.0 KiB
Bash
Raw Normal View History

2023-12-20 05:46:07 -05:00
#!/bin/bash
_getHeader "$name" "$author"
2023-12-25 08:45:11 -05:00
if gum confirm "Do you want to update the SDDM background image with the current wallpaper?" ;then
2023-12-21 05:05:20 -05:00
cache_file="$HOME/.cache/current_wallpaper"
2023-12-20 05:46:07 -05:00
if [ ! -d /etc/sddm.conf.d/ ]; then
sudo mkdir /etc/sddm.conf.d
echo "Folder /etc/sddm.conf.d created."
fi
sudo cp ~/dotfiles/sddm/sddm.conf /etc/sddm.conf.d/
echo "File /etc/sddm.conf.d/sddm.conf updated."
2023-12-21 05:05:20 -05:00
current_wallpaper=$(cat "$cache_file")
extension="${current_wallpaper##*.}"
2023-12-20 05:46:07 -05:00
2023-12-21 05:05:20 -05:00
sudo cp $current_wallpaper /usr/share/sddm/themes/sugar-candy/Backgrounds/current_wallpaper.$extension
echo "Current wallpaper copied into /usr/share/sddm/themes/sugar-candy/Backgrounds/"
new_wall=$(echo $current_wallpaper | sed "s|$HOME/wallpaper/||g")
2023-12-20 05:46:07 -05:00
sudo cp ~/dotfiles/sddm/theme.conf /usr/share/sddm/themes/sugar-candy/
2023-12-21 05:05:20 -05:00
sudo sed -i 's/CURRENTWALLPAPER/'"current_wallpaper.$extension"'/' /usr/share/sddm/themes/sugar-candy/theme.conf
2023-12-20 05:46:07 -05:00
echo ""
echo "SDDM background successfully updated!"
sleep 2
fi
_goBack