From 1c2f5c95e662f79574b49e8b3cec726fa8c79dd8 Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Wed, 13 Mar 2024 16:23:08 +0100 Subject: [PATCH] sway: remove --- users/rouven/modules/wayland/default.nix | 1 - users/rouven/modules/wayland/sway.nix | 61 ------------------------ 2 files changed, 62 deletions(-) delete mode 100644 users/rouven/modules/wayland/sway.nix diff --git a/users/rouven/modules/wayland/default.nix b/users/rouven/modules/wayland/default.nix index 93452e2..d046117 100644 --- a/users/rouven/modules/wayland/default.nix +++ b/users/rouven/modules/wayland/default.nix @@ -2,7 +2,6 @@ { imports = [ - ./sway.nix ./river.nix ./breaktimer.nix ./waybar.nix diff --git a/users/rouven/modules/wayland/sway.nix b/users/rouven/modules/wayland/sway.nix deleted file mode 100644 index 10ca9a5..0000000 --- a/users/rouven/modules/wayland/sway.nix +++ /dev/null @@ -1,61 +0,0 @@ -{ config, pkgs, lib, ... }: -{ - - - wayland.windowManager.sway = { - enable = true; - config = rec { - startup = [ - { - command = "${pkgs.autotiling-rs}/bin/autotiling-rs"; - } - { - command = ''swaymsg -t subscribe -m "['workspace']" | jq --unbuffered -r 'select(.change == "focus") | .current.output' | xargs -L1 swaymsg input 1386:884:Wacom_Intuos_S_Pen map_to_output''; - } - ]; - modifier = "Mod4"; - menu = lib.getExe pkgs.fuzzel; - terminal = "${pkgs.foot}/bin/footclient"; - bars = [ ]; - gaps = { - outer = 5; - inner = 12; - }; - input = { - "*" = { - xkb_layout = "us"; - xkb_variant = "dvorak-alt-intl"; - }; - "2:7:SynPS/2_Synaptics_TouchPad" = { - tap = "enabled"; - drag = "enabled"; - middle_emulation = "enabled"; - accel_profile = "adaptive"; - }; - }; - keybindings = - lib.mkOptionDefault { - "Mod1+space" = "exec ${menu}"; - "Mod4+a" = "exec ${pkgs.wofi-emoji}/bin/wofi-emoji"; - "Print" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot copy area"; - "XF86Launch2" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot save area - | ${lib.getExe pkgs.swappy} -f -"; - "XF86MonBrightnessUp" = "exec ${pkgs.light}/bin/light -A 10"; - "XF86MonBrightnessDown" = "exec ${pkgs.light}/bin/light -U 10"; - "XF86AudioMute" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-mute @DEFAULT_SINK@ toggle"; - "XF86AudioMicMute" = "exec ${pkgs.pulseaudio}/bin/pactl set-source-mute @DEFAULT_SOURCE@ toggle"; - "XF86AudioRaiseVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ +5%"; - "XF86AudioLowerVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-sink-volume @DEFAULT_SINK@ -5%"; - "Shift+XF86AudioRaiseVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-source-volume @DEFAULT_SOURCE@ +5%"; - "Shift+XF86AudioLowerVolume" = "exec ${pkgs.pulseaudio}/bin/pactl set-source-volume @DEFAULT_SOURCE@ -5%"; - - "XF86Favorites" = "exec ${pkgs.systemd}/bin/loginctl lock-session"; - "XF86PowerOff" = "exec ${pkgs.wlogout}/bin/wlogout"; - - "XF86Messenger" = "exec ${pkgs.swaynotificationcenter}/bin/swaync-client --toggle-panel"; - "Cancel" = "exec ${pkgs.swaynotificationcenter}/bin/swaync-client --hide-latest"; - "Shift+Cancel" = "exec ${pkgs.swaynotificationcenter}/bin/swaync-client --cloes-all"; - }; - }; - }; -} -