diff options
| author | Baitinq <[email protected]> | 2023-08-30 19:46:17 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2023-08-30 19:46:17 +0200 |
| commit | e438a255d0dcaa400a0e75d6edf1d3e6113d66c7 (patch) | |
| tree | d063952046093eede391a26f79d6fff46932582e | |
| parent | Wayland: Add 'wayland-session' script and bug note (diff) | |
| download | nixos-config-e438a255d0dcaa400a0e75d6edf1d3e6113d66c7.tar.gz nixos-config-e438a255d0dcaa400a0e75d6edf1d3e6113d66c7.tar.bz2 nixos-config-e438a255d0dcaa400a0e75d6edf1d3e6113d66c7.zip | |
Hosts: Prepare for eventual transition from sxhkd to swhkd
| -rw-r--r-- | hosts/phobos/home.nix | 15 | ||||
| -rw-r--r-- | packages/swhkd/default.nix | 2 |
2 files changed, 11 insertions, 6 deletions
diff --git a/hosts/phobos/home.nix b/hosts/phobos/home.nix index a4de819..9babff9 100644 --- a/hosts/phobos/home.nix +++ b/hosts/phobos/home.nix @@ -44,9 +44,10 @@ builtins.readFile "${dotfiles}/sxhkd/base" + '' + # Not supported by swhkd #enter and leave game mode - alt + shift + F11: ctrl + shift + F11 - pkill -ALRM sxhkd + #alt + shift + F11: ctrl + shift + F11 + # pkill -ALRM sxhkd # Make sxhkd reload its configuration files alt + Escape @@ -95,8 +96,9 @@ XF86AudioPlay playerctl play - XF86AudioPause - playerctl pause + # Not supported by swhkd + #XF86AudioPause + # playerctl pause XF86AudioNext playerctl next @@ -108,8 +110,9 @@ ######## OTHER ####### ###################### - XF86TouchpadToggle - exec ~/.config/i3/scripts/toggletouchpad.sh + # Not supported by swhkd + #XF86TouchpadToggle + # exec ~/.config/i3/scripts/toggletouchpad.sh ''; }; diff --git a/packages/swhkd/default.nix b/packages/swhkd/default.nix index a6950e7..4682a36 100644 --- a/packages/swhkd/default.nix +++ b/packages/swhkd/default.nix @@ -17,3 +17,5 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-E5AE18CfeX1HI/FbGDFoUDsPyG/CpJrD+8Ky7c+EQUw="; } + +# Doesn't yet work because NixOS' kernel isn't compiled with CONFIG_RFKILL_INPUT=y |