mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-28 11:43:51 -08:00
feat: dejankify and rejankify browser binds
This commit is contained in:
parent
e27f42a25c
commit
2be5d72d43
1 changed files with 69 additions and 64 deletions
|
@ -37,11 +37,11 @@
|
||||||
"XCURSOR_THEME,Bibata-Modern-Ice"
|
"XCURSOR_THEME,Bibata-Modern-Ice"
|
||||||
"XCURSOR_SIZE,26"
|
"XCURSOR_SIZE,26"
|
||||||
];
|
];
|
||||||
bind = [
|
bind =
|
||||||
|
[
|
||||||
# External reserved keys: SUPER + Z and SUPER + X for zen-browser.
|
# External reserved keys: SUPER + Z and SUPER + X for zen-browser.
|
||||||
|
|
||||||
# Application Keybinds
|
# Application Keybinds
|
||||||
"$mod, F, exec, zen-bin || librewolf"
|
|
||||||
"$mod, T, exec, kitty"
|
"$mod, T, exec, kitty"
|
||||||
"$mod, E, exec, dolphin"
|
"$mod, E, exec, dolphin"
|
||||||
"$mod, R, exec, pavucontrol"
|
"$mod, R, exec, pavucontrol"
|
||||||
|
@ -115,7 +115,12 @@
|
||||||
|
|
||||||
# System control
|
# System control
|
||||||
",XF86AudioMute, exec, pamixer -t"
|
",XF86AudioMute, exec, pamixer -t"
|
||||||
];
|
]
|
||||||
|
++ (
|
||||||
|
if pkgs.system != "aarch64-linux"
|
||||||
|
then ["$mod, F, exec, zen-bin"]
|
||||||
|
else ["$mod, F, exec, librewolf"]
|
||||||
|
);
|
||||||
bindm = [
|
bindm = [
|
||||||
"$mod, mouse:272, movewindow"
|
"$mod, mouse:272, movewindow"
|
||||||
"$mod, mouse:273, resizewindow"
|
"$mod, mouse:273, resizewindow"
|
||||||
|
|
Loading…
Reference in a new issue