diff --git a/modules/home/default.nix b/modules/home/default.nix index d806b81..0cf495c 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -21,7 +21,6 @@ ++ [(import ./scripts)] ++ [(import ./neofetch)] ++ [(import ./starship)] - ++ [(import ./wlogout)] ++ [(import ./nvim)] ++ [(import ./package)]; } diff --git a/modules/home/hyprland/config.nix b/modules/home/hyprland/config.nix index 7aea93a..9d5aeff 100644 --- a/modules/home/hyprland/config.nix +++ b/modules/home/hyprland/config.nix @@ -123,7 +123,6 @@ in bind = $mainMod, Space, togglefloating, bind = $mainMod, D, exec, pkill wofi || wofi --show drun bind = $mainMod, Escape, exec, swaylock - bind = $mainMod, Suppr, exec, pkill wlogout || wlogout -b 4 # bind = SUPER, V, exec, cliphist list | wofi -dmenu | cliphist decode | wl-copy bind = $mainMod, P, pseudo, bind = $mainMod, J, togglesplit, @@ -200,9 +199,7 @@ in # windowrule windowrule = float,audacious windowrule = workspace 8 silent, audacious - windowrule = float,wlogout windowrule = float,wofi - windowrule = noanim,wlogout windowrule = noanim,wofi windowrule = pin,wofi windowrule = noborder,wofi diff --git a/modules/home/hyprland/hyprland.nix b/modules/home/hyprland/hyprland.nix index c74c9a8..10ac1bd 100644 --- a/modules/home/hyprland/hyprland.nix +++ b/modules/home/hyprland/hyprland.nix @@ -6,8 +6,6 @@ inputs.hypr-contrib.packages.${pkgs.system}.grimblast hyprpicker wofi - rofi-wayland - wlogout grim slurp wl-clipboard diff --git a/modules/home/wlogout/config/layout b/modules/home/wlogout/config/layout deleted file mode 100644 index 1eed213..0000000 --- a/modules/home/wlogout/config/layout +++ /dev/null @@ -1,24 +0,0 @@ -{ - "label" : "lock", - "action" : "swaylock", - "text" : "Lock", - "keybind" : "l" -} -{ - "label": "reboot", - "action": "systemctl reboot", - "text": "Reboot", - "keybind": "r" -} -{ - "label" : "shutdown", - "action" : "poweroff", - "text" : "Shut Down", - "keybind" : "s" -} -{ - "label": "logout", - "action": "loginctl terminate-user $USER", - "text": "Logout", - "keybind": "e" -} diff --git a/modules/home/wlogout/config/lock-hover.png b/modules/home/wlogout/config/lock-hover.png deleted file mode 100644 index 8fb86fe..0000000 Binary files a/modules/home/wlogout/config/lock-hover.png and /dev/null differ diff --git a/modules/home/wlogout/config/lock.png b/modules/home/wlogout/config/lock.png deleted file mode 100644 index 430451c..0000000 Binary files a/modules/home/wlogout/config/lock.png and /dev/null differ diff --git a/modules/home/wlogout/config/logout-hover.png b/modules/home/wlogout/config/logout-hover.png deleted file mode 100644 index 9e570a9..0000000 Binary files a/modules/home/wlogout/config/logout-hover.png and /dev/null differ diff --git a/modules/home/wlogout/config/logout.png b/modules/home/wlogout/config/logout.png deleted file mode 100644 index 128c995..0000000 Binary files a/modules/home/wlogout/config/logout.png and /dev/null differ diff --git a/modules/home/wlogout/config/power-hover.png b/modules/home/wlogout/config/power-hover.png deleted file mode 100644 index 122d331..0000000 Binary files a/modules/home/wlogout/config/power-hover.png and /dev/null differ diff --git a/modules/home/wlogout/config/power.png b/modules/home/wlogout/config/power.png deleted file mode 100644 index ce56166..0000000 Binary files a/modules/home/wlogout/config/power.png and /dev/null differ diff --git a/modules/home/wlogout/config/restart-hover.png b/modules/home/wlogout/config/restart-hover.png deleted file mode 100644 index 3e18536..0000000 Binary files a/modules/home/wlogout/config/restart-hover.png and /dev/null differ diff --git a/modules/home/wlogout/config/restart.png b/modules/home/wlogout/config/restart.png deleted file mode 100644 index 7855d40..0000000 Binary files a/modules/home/wlogout/config/restart.png and /dev/null differ diff --git a/modules/home/wlogout/config/sleep-hover.png b/modules/home/wlogout/config/sleep-hover.png deleted file mode 100644 index 0fd3bad..0000000 Binary files a/modules/home/wlogout/config/sleep-hover.png and /dev/null differ diff --git a/modules/home/wlogout/config/sleep.png b/modules/home/wlogout/config/sleep.png deleted file mode 100644 index 6a3d607..0000000 Binary files a/modules/home/wlogout/config/sleep.png and /dev/null differ diff --git a/modules/home/wlogout/config/style.css b/modules/home/wlogout/config/style.css deleted file mode 100644 index 76cc37b..0000000 --- a/modules/home/wlogout/config/style.css +++ /dev/null @@ -1,53 +0,0 @@ -window { - font-family: JetBrainsMono Nerd Font; - font-size: 14pt; - color: #CED7F4; /* text */ - background-color: rgba(31, 31, 31, 0.7); -} -button { - background-repeat: no-repeat; - background-position: center; - background-size: 50%; - border: none; - background-color: rgba(30, 30, 46, 0); - margin: 5px; - transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out; -} -button:hover { - background-color: rgba(49, 50, 68, 0.5); -} -button:focus { - background-color: #595959; - color:#1F1F1F; -} -#lock { - background-image: image(url("./lock.png")); -} -#lock:focus { - background-image: image(url("./lock-hover.png")); -} -#logout { - background-image: image(url("./logout.png")); -} -#logout:focus { - background-image: image(url("./logout-hover.png")); -} -#suspend { - background-image: image(url("./sleep.png")); -} -#suspend:focus { - background-image: image(url("./sleep-hover.png")); -} - -#shutdown { - background-image: image(url("./power.png")); -} -#shutdown:focus { - background-image: image(url("./power-hover.png")); -} -#reboot { - background-image: image(url("./restart.png")); -} -#reboot:focus { - background-image: image(url("./restart-hover.png")); -} diff --git a/modules/home/wlogout/default.nix b/modules/home/wlogout/default.nix deleted file mode 100644 index 921d30f..0000000 --- a/modules/home/wlogout/default.nix +++ /dev/null @@ -1,4 +0,0 @@ -{...}: -{ - xdg.configFile."wlogout".source = ./config; -}