This commit is contained in:
Stephan Raabe 2024-02-19 21:32:23 +01:00
parent cc5a6e7d4c
commit bc72d070fa
8 changed files with 13 additions and 10 deletions

View File

@ -36,7 +36,6 @@ packagesPacman=(
"brightnessctl" "brightnessctl"
"gum" "gum"
"man-pages" "man-pages"
"xdg-desktop-portal"
"nm-connection-editor" "nm-connection-editor"
"gvfs" "gvfs"
"xdg-user-dirs" "xdg-user-dirs"
@ -49,6 +48,7 @@ packagesPacman=(
"gtk4" "gtk4"
"libadwaita" "libadwaita"
"python-pywal" "python-pywal"
"xdg-desktop-portal"
); );
packagesYay=( packagesYay=(

View File

@ -1 +1 @@
* { border-width: 1px; } * { border-width: 3px; }

View File

@ -3,6 +3,7 @@ https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.8
-------------------------------------------------------- --------------------------------------------------------
General: General:
- xarchiver and zip added for thunar - xarchiver and zip added for thunar
- Rofi border width can be adjusted in dotfiles/.settings/rofi-border.rasi
ML4W Welcome App: ML4W Welcome App:
- Opens Hyprland systeminfo from the about menu - Opens Hyprland systeminfo from the about menu

View File

@ -3,9 +3,10 @@ figlet "Disable SDDM"
if [ -f /etc/systemd/system/display-manager.service ]; then if [ -f /etc/systemd/system/display-manager.service ]; then
if gum confirm "Do you want to disable the current display manager?" ;then if gum confirm "Do you want to disable the current display manager?" ;then
sudo rm /etc/systemd/system/display-manager.service sudo rm /etc/systemd/system/display-manager.service
echo "Current display manager removed. Please reboot your system." echo ":: Current display manager removed."
echo ":: Please reboot your system."
fi fi
else else
echo "No display manager enabled." echo ":: No Display Manager enabled."
fi fi
sleep 3 sleep 3

View File

@ -1,11 +1,12 @@
#!/bin/bash #!/bin/bash
figlet "Enable SDDM" figlet "Enable SDDM"
if [ -f /etc/systemd/system/display-manager.service ]; then if [ -f /etc/systemd/system/display-manager.service ]; then
echo "Display Manager is already enabled." echo ":: Display Manager is already enabled."
else else
if gum confirm "Do you want to enable SDDM as your display manager?" ;then if gum confirm "Do you want to enable SDDM as your display manager?" ;then
sudo systemctl enable sddm.service sudo systemctl enable sddm.service
echo "Display manager SDDM has been enabled. Please reboot your system." echo ":: Display manager SDDM has been enabled."
echo ":: Please reboot your system!"
fi fi
fi fi
sleep 3 sleep 3

View File

@ -11,7 +11,7 @@
cache_file="$HOME/.cache/current_wallpaper" cache_file="$HOME/.cache/current_wallpaper"
sleep 1 sleep 1
clear clear
figlet "Set SDDM Wallpaper" figlet "Set Wallpaper"
echo echo
echo "Set the current wallpaper as SDDM wallpaper." echo "Set the current wallpaper as SDDM wallpaper."
echo echo
@ -20,7 +20,7 @@ if [ ! -d /etc/sddm.conf.d/ ]; then
echo "Folder /etc/sddm.conf.d created." echo "Folder /etc/sddm.conf.d created."
fi fi
sudo cp sddm.conf /etc/sddm.conf.d/ sudo cp $HOME/dotfiles/sddm/sddm.conf /etc/sddm.conf.d/
echo "File /etc/sddm.conf.d/sddm.conf updated." echo "File /etc/sddm.conf.d/sddm.conf updated."
current_wallpaper=$(cat "$cache_file") current_wallpaper=$(cat "$cache_file")

View File

@ -85,7 +85,7 @@ ForceLastUser="true"
ForcePasswordFocus="true" ForcePasswordFocus="true"
## Give automatic focus to the password field. Together with ForceLastUser this makes for the fastest login experience. ## Give automatic focus to the password field. Together with ForceLastUser this makes for the fastest login experience.
ForceHideCompletePassword="false" ForceHideCompletePassword="true"
## If you don't like to see any character at all not even while being entered set this to true. ## If you don't like to see any character at all not even while being entered set this to true.
ForceHideVirtualKeyboardButton="false" ForceHideVirtualKeyboardButton="false"

View File

@ -12,7 +12,7 @@
} }
{ {
"label" : "logout", "label" : "logout",
"action" : "sleep 1; hyprctl dispatch exit", "action" : "hyprctl dispatch exit",
"text" : "Exit", "text" : "Exit",
"keybind" : "e" "keybind" : "e"
} }