Home Gen224 @ 2024-05-01-23:37

This commit is contained in:
Jonas Röger 2024-05-01 23:37:37 +02:00
parent cf1964434b
commit d6e0629a3b
4 changed files with 10 additions and 0 deletions

View File

@ -13,6 +13,7 @@
./themes/gtk ./themes/gtk
./themes/qt ./themes/qt
./waybar ./waybar
./wlogout
./wofi ./wofi
./yubikey.nix ./yubikey.nix
./zsh.nix ./zsh.nix

View File

@ -37,6 +37,7 @@
", XF86AudioMute, exec, ${pkgs.pulsemixer}/bin/pulsemixer --toggle-mute" ", XF86AudioMute, exec, ${pkgs.pulsemixer}/bin/pulsemixer --toggle-mute"
", XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl set +5%" ", XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl set +5%"
", XF86MonBrightnessDown, exec, ${pkgs.brightnessctl}/bin/brightnessctl set 5%-" ", XF86MonBrightnessDown, exec, ${pkgs.brightnessctl}/bin/brightnessctl set 5%-"
"$mod, 0, ${pkgs.wlogout}/bin/wlogout"
] ]
++ ( ++ (
# workspaces # workspaces

View File

@ -0,0 +1,5 @@
{...}: {
imports = [
./wlogout.nix
];
}

View File

@ -0,0 +1,3 @@
{...}: {
programs.wlogout.enable = true;
}