nixdots/home/programs/graphical/wms/hyprland/packages/toggle-fake-fullscreen/default.nix

15 lines
222 B
Nix
Raw Normal View History

2024-06-21 14:13:23 +00:00
{pkgs, ...}:
pkgs.writeShellApplication {
name = "toggle-fake-fullscreen";
runtimeInputs = with pkgs; [
coreutils
jq
hyprland
];
text = ''
${builtins.readFile ./toggle-fake-fullscreen.sh}
'';
}