This commit is contained in:
huhg 2025-11-21 03:25:16 -05:00
parent 1c10ca9746
commit e41b3774f8
4 changed files with 65 additions and 11 deletions

View file

@ -5,13 +5,25 @@ let
(builtins.readFile ./chvol.sh);
chbright = pkgs.writeShellScript "chbrights"
(builtins.readFile ./chbright.sh);
multiTouchGesturesConfig = ''
bindgesture swipe:4:up focus parent
bindgesture swipe:4:left workspace prev
bindgesture swipe:4:right workspace next
bindgesture swipe:3:up focus up
bindgesture swipe:3:down focus down
bindgesture swipe:3:left focus left
bindgesture swipe:3:right focus right
'';
in {
home.packages = with pkgs;
[ grim slurp wl-clipboard brightnessctl ];
home.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
wayland.windowManager.sway = {
enable = true;
config = {
@ -57,7 +69,14 @@ in {
};
# GODOT IS A PAIN
# extraConfig = "for_window [app_id=\"godot\"] border none";
extraConfig = "
for_window [class=\"^.*Godot.*$\"] floating enable
for_window [class=\"^.*Unity.*$\"] floating enable
" +
multiTouchGesturesConfig
+
''output 'eDP-1' scale 1''
;
};