Added more wallpapers

This commit is contained in:
marc
2022-11-06 19:32:18 +01:00
parent 934ce73d01
commit 2347adc56f
21 changed files with 787 additions and 7 deletions

View File

@@ -5,6 +5,7 @@
./app
./desktop
./dev
./editors
./shell
];
}

View File

@@ -33,6 +33,9 @@ in {
browser = lib.mkOption {
type = cmdModule;
};
locker = lib.mkOption {
type = cmdModule;
};
};
config = lib.mkIf cfg.enable {
@@ -98,6 +101,13 @@ in {
};
"${system_mode}" = {
"l" = "exec --no-startup-id ${cfg.locker.command}, mode \"default\"";
"e" = "exec --no-startup-id i3-msg exit, mode \"default\"";
"s" = "exec --no-startup-id ${cfg.locker.command} && systemctl suspend, mode \"default\"";
"h" = "exec --no-startup-id ${cfg.locker.command} && systemctl hibernate, mode \"default\"";
"r" = "exec --no-startup-id systemctl reboot, mode \"default\"";
"Shift+s" = "exec --no-startup-id systemctl poweroff -i, mode \"default\"";
"Return" = "mode \"default\"";
"Escape" = "mode \"default\"";
};

View File

@@ -0,0 +1,6 @@
{ ... }:
{
imports = [
];
}

View File

@@ -27,6 +27,7 @@ in
launcher.command = "${pkgs.rofi}/bin/rofi rofi -show run";
terminal.command = "${pkgs.alacritty}/bin/alacritty";
browser.command = "${pkgs.firefox}/bin/firefox";
locker.command = "${pkgs.i3lock-blur}/bin/i3lock-color -c 808F85 && sleep 1";
};
polybar.enable = true;