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

This commit is contained in:
Emmet
2023-08-16 21:33:00 -05:00
parent b10286effc
commit 6b463d479a
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 = [