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"
"gum"
"man-pages"
"xdg-desktop-portal"
"nm-connection-editor"
"gvfs"
"xdg-user-dirs"
@ -49,6 +48,7 @@ packagesPacman=(
"gtk4"
"libadwaita"
"python-pywal"
"xdg-desktop-portal"
);
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:
- xarchiver and zip added for thunar
- Rofi border width can be adjusted in dotfiles/.settings/rofi-border.rasi
ML4W Welcome App:
- 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 gum confirm "Do you want to disable the current display manager?" ;then
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
else
echo "No display manager enabled."
echo ":: No Display Manager enabled."
fi
sleep 3

View File

@ -1,11 +1,12 @@
#!/bin/bash
figlet "Enable SDDM"
if [ -f /etc/systemd/system/display-manager.service ]; then
echo "Display Manager is already enabled."
echo ":: Display Manager is already enabled."
else
if gum confirm "Do you want to enable SDDM as your display manager?" ;then
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
sleep 3

View File

@ -11,7 +11,7 @@
cache_file="$HOME/.cache/current_wallpaper"
sleep 1
clear
figlet "Set SDDM Wallpaper"
figlet "Set Wallpaper"
echo
echo "Set the current wallpaper as SDDM wallpaper."
echo
@ -20,7 +20,7 @@ if [ ! -d /etc/sddm.conf.d/ ]; then
echo "Folder /etc/sddm.conf.d created."
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."
current_wallpaper=$(cat "$cache_file")

View File

@ -85,7 +85,7 @@ ForceLastUser="true"
ForcePasswordFocus="true"
## 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.
ForceHideVirtualKeyboardButton="false"

View File

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