nixos/home/scripts/hyprpanel/default.nix
2024-10-04 10:58:53 +02:00

19 lines
516 B
Nix

{ pkgs, ... }:
let
hyprpanel-toggle = pkgs.writeShellScriptBin "hyprpanel-toggle" ''
hyprpanel -t bar-0
hyprpanel -t bar-1
hyprpanel -t bar-2
hyprpanel -t bar-3
'';
hyprpanel-reload = pkgs.writeShellScriptBin "hyprpanel-reload" ''
[ $(pgrep "ags") ] && pkill ags
hyprctl dispatch exec hyprpanel
'';
hyprpanel-kill = pkgs.writeShellScriptBin "hyprpanel-kill" ''
[ $(pgrep "ags") ] && pkill ags
'';
in { home.packages = [ hyprpanel-toggle hyprpanel-reload hyprpanel-kill ]; }