mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-14 16:47:17 +00:00
15 lines
222 B
Nix
15 lines
222 B
Nix
|
{pkgs, ...}:
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "toggle-fake-fullscreen";
|
||
|
runtimeInputs = with pkgs; [
|
||
|
coreutils
|
||
|
jq
|
||
|
hyprland
|
||
|
];
|
||
|
text = ''
|
||
|
${builtins.readFile ./toggle-fake-fullscreen.sh}
|
||
|
'';
|
||
|
}
|
||
|
|
||
|
|