Added a lot of "normal" expected-to-work keybinds

This commit is contained in:
Emmet 2023-08-16 21:33:00 -05:00
parent 2e8a2f9220
commit c5943979fe
2 changed files with 22 additions and 0 deletions

View file

@ -24,6 +24,16 @@
(pkgs.callPackage ../pkgs/ytsub.nix { })
(pkgs.callPackage ../pkgs/russ.nix { })
(pkgs.callPackage ../pkgs/pokemon-colorscripts.nix { })
(pkgs.writeShellScriptBin "airplane-mode" ''
#!/bin/sh
connectivity="$(nmcli n connectivity)"
if [ "$connectivity" == "full" ]
then
nmcli n off
else
nmcli n on
fi
'')
];
imports = [