mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-13 05:37:18 +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}
|
|
'';
|
|
}
|
|
|
|
|