Add toggle-fake-fullscreen script

This commit is contained in:
ItsDrike 2024-06-21 16:13:23 +02:00
parent 036b1a9064
commit 3cb701b042
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
5 changed files with 40 additions and 1 deletions

View file

@ -0,0 +1,14 @@
{pkgs, ...}:
pkgs.writeShellApplication {
name = "toggle-fake-fullscreen";
runtimeInputs = with pkgs; [
coreutils
jq
hyprland
];
text = ''
${builtins.readFile ./toggle-fake-fullscreen.sh}
'';
}