98 lines
3.4 KiB
Nix
98 lines
3.4 KiB
Nix
{ mainMod, nvidia-offload-enabled }:
|
|
let
|
|
prefix = if nvidia-offload-enabled then "offload " else "";
|
|
browser = "${prefix}firefox";
|
|
noOffloadBrowser = "firefox -P noOffload";
|
|
terminal = "${prefix}ghostty";
|
|
filemanager = "nemo";
|
|
scripts = "~/.config/scripts";
|
|
|
|
# freezeShot = "--freeze";
|
|
freezeShot = "";
|
|
|
|
resizeStep = builtins.toString 20;
|
|
brightnessStep = builtins.toString 10;
|
|
volumeStep = builtins.toString 2;
|
|
in
|
|
[
|
|
''${mainMod}, F, exec, ${browser}''
|
|
''CTRL ${mainMod}, F, exec, ${noOffloadBrowser} -no-remote''
|
|
''${mainMod}, RETURN, exec, ${terminal}''
|
|
''CTRL ALT, T, exec, ${terminal}''
|
|
''${mainMod}, Q, killactive, ''
|
|
|
|
''${mainMod}, M, exec, wlogout --protocol layer-shell''
|
|
''${mainMod}, E, exec, ${filemanager}''
|
|
''${mainMod}, V, togglefloating, ''
|
|
''ALT, SPACE, exec, rofi -config ~/.config/rofi/apps.rasi -show drun''
|
|
''${mainMod} ALT, W, exec, ${scripts}/waybarRestart.sh''
|
|
''${mainMod}, P, pseudo, # dwindle''
|
|
''${mainMod}, S, togglesplit, # dwindle''
|
|
''CTRL ${mainMod} SHIFT, L, exec, hyprlock''
|
|
''${mainMod} SHIFT, s, exec, hyprshot -m region --clipboard-only ${freezeShot}''
|
|
''CTRL SHIFT, s, exec, hyprshot -m window --clipboard-only ${freezeShot}''
|
|
''CTRL SHIFT ${mainMod}, s, exec, hyprshot -m output --clipboard-only ${freezeShot}''
|
|
''${mainMod}, PERIOD, exec, rofi -modi emoji -show emoji''
|
|
''CTRL ${mainMod}, c, exec, rofi -show calc -modi calc -no-show-match -no-sort''
|
|
''${mainMod}, X, exec, sleep 0.1 && swaync-client -t -sw''
|
|
''${mainMod} SHIFT, C, centerwindow''
|
|
'',F11, fullscreen''
|
|
''${mainMod}, C, exec, code''
|
|
|
|
# Color Picker
|
|
''${mainMod} SHIFT, P, exec, hyprpicker -f hex -a -z''
|
|
|
|
# Cycle windows
|
|
''ALT, TAB, cyclenext''
|
|
''ALT, TAB, bringactivetotop''
|
|
|
|
''${mainMod}, h, movefocus, l''
|
|
''${mainMod}, l, movefocus, r''
|
|
''${mainMod}, k, movefocus, u''
|
|
''${mainMod}, j, movefocus, d''
|
|
|
|
''${mainMod}, mouse_down, workspace, e-1''
|
|
''${mainMod}, mouse_up, workspace, e+1''
|
|
|
|
''${mainMod} CTRL, l, resizeactive, ${resizeStep} 0''
|
|
''${mainMod} CTRL, h, resizeactive, -${resizeStep} 0''
|
|
''${mainMod} CTRL, k, resizeactive, 0 -${resizeStep}''
|
|
''${mainMod} CTRL, j, resizeactive, 0 ${resizeStep}''
|
|
|
|
''${mainMod} SHIFT, l, movewindow, r''
|
|
''${mainMod} SHIFT, h, movewindow, l''
|
|
''${mainMod} SHIFT, k, movewindow, u''
|
|
''${mainMod} SHIFT, j, movewindow, d''
|
|
|
|
# Media
|
|
'',XF86AudioRaiseVolume, exec, wpctl set-mute @DEFAULT_SINK@ 0 && wpctl set-volume @DEFAULT_SINK@ ${volumeStep}%+''
|
|
'',XF86AudioLowerVolume, exec, wpctl set-mute @DEFAULT_SINK@ 0 && wpctl set-volume @DEFAULT_SINK@ ${volumeStep}%-''
|
|
'',XF86MonBrightnessDown, exec, brightnessctl set ${brightnessStep}%-''
|
|
'',XF86MonBrightnessUp, exec, brightnessctl set ${brightnessStep}%+''
|
|
'',XF86AudioPrev, exec, playerctl previous''
|
|
'',XF86AudioNext, exec, playerctl next''
|
|
'',XF86AudioPlay, exec, playerctl play-pause''
|
|
'',XF86AudioStop, exec, playerctl stop''
|
|
'',XF86AudioMute, exec, wpctl set-mute @DEFAULT_SINK@ toggle''
|
|
|
|
# ==== Plugins ==== #
|
|
# Overview
|
|
''${mainMod}, o, hyprexpo:expo, toggle''
|
|
''${mainMod}, TAB, hyprexpo:expo, toggle''
|
|
]
|
|
++ (
|
|
# workspaces
|
|
# binds $mainMod + [shift +] {1..9} to [move to] workspace {1..9}
|
|
builtins.concatLists (
|
|
builtins.genList (
|
|
i:
|
|
let
|
|
ws = i + 1;
|
|
in
|
|
[
|
|
"${mainMod}, code:1${toString i}, workspace, ${toString ws}"
|
|
"${mainMod} SHIFT, code:1${toString i}, movetoworkspace, ${toString ws}"
|
|
]
|
|
) 9
|
|
)
|
|
)
|