Compare commits

...

3 Commits

Author SHA1 Message Date
f8aeb3ed2c Change keybindings 2025-08-30 19:58:29 +02:00
b6377c2d4c Ensure make is installed 2025-08-30 15:31:02 +02:00
82271330c4 Change default layout 2025-08-30 15:28:30 +02:00
3 changed files with 17 additions and 10 deletions

View File

@ -5,7 +5,6 @@
pkgs.adwaita-icon-theme
pkgs.brightnessctl
pkgs.pamixer
pkgs.rofi-wayland
pkgs.wtype
];

View File

@ -1,4 +1,3 @@
{ ... }:
{
programs.kitty.enable = true;
@ -16,6 +15,7 @@
border_size = 2;
"col.active_border" = "0xFF81A1C1";
"col.inactive_border" = "0xFF677691";
layout = "master";
};
decoration = {
@ -87,27 +87,33 @@
"$shiftMod" = "SUPER_SHIFT";
bind = [
# Open and close applications
"$mod, RETURN, exec, kitty"
# Master layout
"$mod, F, fullscreen"
"$mod, Return, layoutmsg, swapwithmaster master"
"$mod, minus, layoutmsg, mfact -0.01"
"$mod, equal, layoutmsg, mfact +0.01"
"$mod, Tab, layoutmsg, cyclenext"
"$shiftMod, Tab, layoutmsg, cycleprev"
"$mod, comma, layoutmsg, addmaster"
"$mod, period, layoutmsg, removemaster"
# App launchers / session
"$mod, T, exec, kitty"
"$mod, E, exec, emacs"
"$mod, B, exec, zen"
"$mod, SPACE, exec, rofi -show drun"
"$mod, Q, killactive"
# Window management
"$mod, F, fullscreen"
# Window focus & movement
"$mod, H, movefocus, l"
"$mod, J, movefocus, d"
"$mod, K, movefocus, u"
"$mod, L, movefocus, r"
"$shiftMod, H, movewindow, l"
"$shiftMod, J, movewindow, d"
"$shiftMod, K, movewindow, u"
"$shiftMod, L, movewindow, r"
# Norwegian characters
# Text input (Norwegian characters
"$mod, A, exec, wtype 'å'"
"$mod, O, exec, wtype 'ø'"
"$mod, semicolon, exec, wtype 'æ'"
@ -115,6 +121,7 @@
"$shiftMod, O, exec, wtype 'Ø'"
"$shiftMod, semicolon, exec, wtype 'Æ'"
# Media & brightness
", XF86AudioRaiseVolume, exec, pamixer -i 5 "
", XF86AudioLowerVolume, exec, pamixer -d 5 "
", XF86AudioMute, exec, pamixer -t"

View File

@ -34,6 +34,7 @@ with pkgs;
];
utils = [
gnumake
jet
jq
pandoc