diff --git a/README.md b/README.md index 363b78f..7cc58ac 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,6 @@ The following packages are required for the proper functioning of Hyprland on Vo - swayidle - swappy - rofi - - wlogout - font-awesome-6 - fontmanager - gnome-system-monitor diff --git a/hyprland/.config/hypr/conf/environments/default.conf b/hyprland/.config/hypr/conf/environments/default.conf index 056922b..5130049 100644 --- a/hyprland/.config/hypr/conf/environments/default.conf +++ b/hyprland/.config/hypr/conf/environments/default.conf @@ -20,4 +20,3 @@ $rofi_powermenu = $scr_path/rofi-launch.sh p $rofi_screenshot = $scr_path/rofi-launch.sh s $rofi_clipboard = $scr_path/rofi-launch.sh c $rofi_wallpaper = $scr_path/rofi-launch.sh w -$powermenu = $scr_path/wlogout-toggle.sh diff --git a/hyprland/.config/wlogout/icons/hibernate.png b/hyprland/.config/wlogout/icons/hibernate.png deleted file mode 100644 index bf2b001..0000000 Binary files a/hyprland/.config/wlogout/icons/hibernate.png and /dev/null differ diff --git a/hyprland/.config/wlogout/icons/lock.png b/hyprland/.config/wlogout/icons/lock.png deleted file mode 100644 index da59b10..0000000 Binary files a/hyprland/.config/wlogout/icons/lock.png and /dev/null differ diff --git a/hyprland/.config/wlogout/icons/logout.png b/hyprland/.config/wlogout/icons/logout.png deleted file mode 100644 index 8a25922..0000000 Binary files a/hyprland/.config/wlogout/icons/logout.png and /dev/null differ diff --git a/hyprland/.config/wlogout/icons/reboot.png b/hyprland/.config/wlogout/icons/reboot.png deleted file mode 100644 index e5fd221..0000000 Binary files a/hyprland/.config/wlogout/icons/reboot.png and /dev/null differ diff --git a/hyprland/.config/wlogout/icons/shutdown.png b/hyprland/.config/wlogout/icons/shutdown.png deleted file mode 100644 index 663ca03..0000000 Binary files a/hyprland/.config/wlogout/icons/shutdown.png and /dev/null differ diff --git a/hyprland/.config/wlogout/icons/suspend.png b/hyprland/.config/wlogout/icons/suspend.png deleted file mode 100644 index af099b9..0000000 Binary files a/hyprland/.config/wlogout/icons/suspend.png and /dev/null differ diff --git a/hyprland/.config/wlogout/layout b/hyprland/.config/wlogout/layout deleted file mode 100644 index d7bceef..0000000 --- a/hyprland/.config/wlogout/layout +++ /dev/null @@ -1,30 +0,0 @@ -{ - "label": "lock", - "action": "sleep 1; swaylock", - "keybind": "l" -} -{ - "label": "hibernate", - "action": "sleep 1; systemctl hibernate", - "keybind": "h" -} -{ - "label": "logout", - "action": "sleep 1; hyprctl dispatch exit", - "keybind": "e" -} -{ - "label": "shutdown", - "action": "sleep 1; vshutdown", - "keybind": "s" -} -{ - "label": "suspend", - "action": "sleep 1; systemctl suspend", - "keybind": "u" -} -{ - "label": "reboot", - "action": "sleep 1; vreboot", - "keybind": "r" -} \ No newline at end of file diff --git a/hyprland/.config/wlogout/noise.png b/hyprland/.config/wlogout/noise.png deleted file mode 100644 index 028b188..0000000 Binary files a/hyprland/.config/wlogout/noise.png and /dev/null differ diff --git a/hyprland/.config/wlogout/style.css b/hyprland/.config/wlogout/style.css deleted file mode 100644 index 941c53b..0000000 --- a/hyprland/.config/wlogout/style.css +++ /dev/null @@ -1,59 +0,0 @@ -@import "../../.config/hypr-theme/global.css"; - -* { - font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif; - background-image: none; - transition: 20ms; -} - -window { - background-color: rgba(12, 12, 12, 0.1); -} - -button { - margin: 8px; - border-radius: 20px; - color: #FFFFFF; - background-repeat: no-repeat; - background-position: center; - background-size: 20%; - background-color: @backgrounddark; - transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682); -} - -button:focus, -button:active, -button:hover { - background-size: 25%; - background-color: rgba(255, 255, 255, 0.5); -} - -/* ------------------------------------------------------ -Buttons ------------------------------------------------------ -*/ - -#lock { - background-image: image(url("icons/lock.png")); -} - -#logout { - background-image: image(url("icons/logout.png")); -} - -#suspend { - background-image: image(url("icons/suspend.png")); -} - -#hibernate { - background-image: image(url("icons/hibernate.png")); -} - -#shutdown { - background-image: image(url("icons/shutdown.png")); -} - -#reboot { - background-image: image(url("icons/reboot.png")); -} \ No newline at end of file