This commit is contained in:
Stephan Raabe
2023-12-20 09:27:39 +01:00
parent 7b936dead7
commit 59a037c694
10 changed files with 75 additions and 20 deletions

View File

@@ -1,3 +1,3 @@
name="Appearance"
order=2
order=10
author="Stephan Raabe ML4W"

View File

@@ -1,4 +1,4 @@
name="Keybindings"
order=2
order=20
author="Stephan Raabe ML4W"

View File

@@ -0,0 +1,4 @@
name="SDDM"
desxription="Update the background wallpaper of sddm to the current wallpaper."
order=50
author="Stephan Raabe ML4W"

View File

@@ -0,0 +1,23 @@
#!/bin/bash
_getHeader "$name" "$author"
if gum confirm "Do you want to update the SDDM background with the current wallpaper?" ;then
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."
sudo cp ~/.cache/current_wallpaper.jpg /usr/share/sddm/themes/sugar-candy/Backgrounds/
echo "Current wallpaper copied into /usr/share/sddm/themes/sugar-candy/Backgrounds/"
sudo cp ~/dotfiles/sddm/theme.conf /usr/share/sddm/themes/sugar-candy/
echo "File theme.conf updated in /usr/share/sddm/themes/sugar-candy/"
echo ""
echo "SDDM background successfully updated!"
sleep 2
fi
_goBack

View File

@@ -1,3 +1,3 @@
name="System"
order=2
order=30
author="Stephan Raabe ML4W"

View File

@@ -1,2 +1,2 @@
name="Waybar"
order=1
order=40