diff --git a/flake.lock b/flake.lock index edfa268..cda621c 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1716773194, - "narHash": "sha256-rskkGmWlvYFb+CXedBiL8eWEuED0Es0XR4CkJ11RQKY=", + "lastModified": 1716291492, + "narHash": "sha256-Qvfoa99WdYIneGrrLFIKQCevLgB5vnxvwJe5aWbGYZY=", "owner": "nix-community", "repo": "disko", - "rev": "10986091e47fb1180620b78438512b294b7e8f67", + "rev": "f1654e07728008d354c704d265fc710e3f5f42ee", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "hardware": { "locked": { - "lastModified": 1716881121, - "narHash": "sha256-oTf3enbe/lbiNzsyZ8ria+422hx4e/FB3xQcY2LPnJw=", + "lastModified": 1716173274, + "narHash": "sha256-FC21Bn4m6ctajMjiUof30awPBH/7WjD0M5yqrWepZbY=", "owner": "nixos", "repo": "nixos-hardware", - "rev": "806e9d4a933dd1e75592e88894d4bd2f296f5bbf", + "rev": "d9e0b26202fd500cf3e79f73653cce7f7d541191", "type": "github" }, "original": { @@ -42,11 +42,11 @@ ] }, "locked": { - "lastModified": 1716847642, - "narHash": "sha256-rjEswRV0o23eBBils8lJXyIGha+l/VjV73IPg+ztxgk=", + "lastModified": 1715930644, + "narHash": "sha256-W9pyM3/vePxrffHtzlJI6lDS3seANQ+Nqp+i58O46LI=", "owner": "nix-community", "repo": "home-manager", - "rev": "10c7c219b7dae5795fb67f465a0d86cbe29f25fa", + "rev": "e3ad5108f54177e6520535768ddbf1e6af54b59d", "type": "github" }, "original": { @@ -57,11 +57,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1716509168, - "narHash": "sha256-4zSIhSRRIoEBwjbPm3YiGtbd8HDWzFxJjw5DYSDy1n8=", + "lastModified": 1716137900, + "narHash": "sha256-sowPU+tLQv8GlqtVtsXioTKeaQvlMz/pefcdwg8MvfM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "bfb7a882678e518398ce9a31a881538679f6f092", + "rev": "6c0b7a92c30122196a761b440ac0d46d3d9954f1", "type": "github" }, "original": { @@ -73,11 +73,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1716633019, - "narHash": "sha256-xim1b5/HZYbWaZKyI7cn9TJCM6ewNVZnesRr00mXeS4=", + "lastModified": 1716218643, + "narHash": "sha256-i/E7gzQybvcGAYDRGDl39WL6yVk30Je/NXypBz6/nmM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9d29cd266cebf80234c98dd0b87256b6be0af44e", + "rev": "a8695cbd09a7ecf3376bd62c798b9864d20f86ee", "type": "github" }, "original": { diff --git a/users/willifan/graphical/hyprland/Lenni/kanshi.nix b/users/willifan/graphical/hyprland/Lenni/kanshi.nix index ade1778..1df997b 100644 --- a/users/willifan/graphical/hyprland/Lenni/kanshi.nix +++ b/users/willifan/graphical/hyprland/Lenni/kanshi.nix @@ -2,7 +2,7 @@ { home-manager.users.willifan = { services.kanshi = { - enable = true; + enable = false; settings = [ { @@ -42,6 +42,9 @@ scale = 1.0; transform = "270"; } + { + criteria = "*"; + } ]; profile.exec = "$XDG_CONFIG_HOME/eww/scripts/monitors.sh"; } diff --git a/users/willifan/graphical/hyprland/common/default.nix b/users/willifan/graphical/hyprland/common/default.nix index acc305b..0700cdd 100644 --- a/users/willifan/graphical/hyprland/common/default.nix +++ b/users/willifan/graphical/hyprland/common/default.nix @@ -9,7 +9,6 @@ ./pipewire.nix ./polkit.nix ./utils.nix - ./wlogout.nix ./wofi.nix ]; diff --git a/users/willifan/graphical/hyprland/common/wlogout.nix b/users/willifan/graphical/hyprland/common/wlogout.nix deleted file mode 100644 index f605fd2..0000000 --- a/users/willifan/graphical/hyprland/common/wlogout.nix +++ /dev/null @@ -1,83 +0,0 @@ -{ pkgs, home-manager, ...}: -{ - home-manager.users.willifan = { - programs.wlogout = { - enable = true; - layout = [ - { - label = "shutdown"; - action = "systemctl poweroff"; - text = "Shutdown"; - } - { - label = "hyprland"; - action = "hyprctl dispatch exit"; - text = "Exit Hyprland"; - } - { - label = "whatever"; - action = ""; - text = "whatever"; - } - { - label = "reboot"; - action = "systemctl reboot"; - text = "Reboot"; - } - { - label = "suspend"; - action = "systemctl suspend"; - text = "Suspend"; - } - { - label = "hibernate"; - action = "systemctl hibernate"; - text = "Hibernate"; - } - ]; - - style = '' - @import url("file:///home/willifan/.config/gtk-4.0/gtk.css"); - * { - background-image: none; - box-shadow: none; - } - - window { - background-color: rgba(12, 12, 12, 0.9); - } - - button { - border-radius: 10px; - border-color: #ffa44b; - border-style: solid; - border-width: 2px; - background-repeat: no-repeat; - background-position: center; - background-size: 25%; - } - - button:focus, button:active, button:hover { - /*background-color: #3700B3;*/ - outline-style: none; - } - - #suspend { - background-image: image(url("/home/willifan/.config/wlogout/suspend.png")); - } - - #hibernate { - background-image: image(url("/home/willifan/.config/wlogout/hibernate.png")); - } - - #shutdown { - background-image: image(url("/home/willifan/.config/wlogout/shutdown.png")); - } - - #reboot { - background-image: image(url("/home/willifan/.config/wlogout/reboot.png")); - } - ''; - }; - }; -} \ No newline at end of file