commit | 5d6fe4d0de04e9b2c7358c5ee3e91a6b89da816a | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Thu Jun 16 20:56:02 2022 +0100 |
committer | Skyler Grey <skyler3665@gmail.com> | Thu Jun 16 20:57:02 2022 +0100 |
tree | d6c2003b4cccce5caebca00fe68cade9f8503c1e | |
parent | f2b5e26d877876c16aa091456c713977eae28f76 [diff] [blame] |
Add basic sway maximize command using patch
diff --git a/src/overlays/sway.nix b/src/overlays/sway.nix new file mode 100644 index 0000000..a0488b1 --- /dev/null +++ b/src/overlays/sway.nix
@@ -0,0 +1,7 @@ +final: prev: { + sway-unwrapped = prev.sway-unwrapped.overrideAttrs (old: { + patches = (old.patches or []) ++ [ + ./sway/maximize.patch + ]; + }); +}