|
|
@ -8,6 +8,7 @@ in with theme.colors; {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
playerctl # pactl comes with PulseAudio
|
|
|
|
playerctl # pactl comes with PulseAudio
|
|
|
|
xclip # Copying screenshots to clipboard
|
|
|
|
xclip # Copying screenshots to clipboard
|
|
|
|
|
|
|
|
wmctrl # For rofi power menu
|
|
|
|
];
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
# Screenshots
|
|
|
|
# Screenshots
|
|
|
@ -69,7 +70,10 @@ in with theme.colors; {
|
|
|
|
"${mod}+Return" = "exec kitty";
|
|
|
|
"${mod}+Return" = "exec kitty";
|
|
|
|
"${mod}+Shift+e" = "exec i3-msg exit"; # bypass default session exit confirmation menu
|
|
|
|
"${mod}+Shift+e" = "exec i3-msg exit"; # bypass default session exit confirmation menu
|
|
|
|
"${mod}+space" = "exec i3-msg open"; # Open blank space
|
|
|
|
"${mod}+space" = "exec i3-msg open"; # Open blank space
|
|
|
|
"Mod1+Q" = "exec /etc/profiles/per-user/elnu/bin/rofi-power";
|
|
|
|
"Mod1+Q" = let rofi-power = pkgs.substituteAll {
|
|
|
|
|
|
|
|
src = ./power.sh;
|
|
|
|
|
|
|
|
isExecutable = true;
|
|
|
|
|
|
|
|
}; in "exec ${rofi-power}";
|
|
|
|
|
|
|
|
|
|
|
|
# Audio controls
|
|
|
|
# Audio controls
|
|
|
|
"XF86AudioRaiseVolume" = "exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10%";
|
|
|
|
"XF86AudioRaiseVolume" = "exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10%";
|
|
|
|