mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 19:15:37 +00:00
move polybar init script into nix
This commit is contained in:
parent
70d50a8681
commit
8e08b70d86
@ -1,4 +1,14 @@
|
||||
{ config, pkgs, lib, user, ... }: {
|
||||
{ config, pkgs, lib, user, ... }:
|
||||
|
||||
let
|
||||
|
||||
polybarReload = pkgs.writeShellScriptBin "polybarReload" ''
|
||||
pkill polybar
|
||||
while pgrep -x polybar > /dev/null; do sleep 1; done
|
||||
polybar &
|
||||
'';
|
||||
|
||||
in {
|
||||
|
||||
config = lib.mkIf config.services.xserver.enable {
|
||||
|
||||
@ -198,7 +208,7 @@
|
||||
notification = false;
|
||||
}
|
||||
{
|
||||
command = "~/.config/i3/polybar.sh";
|
||||
command = builtins.toString polybarReload;
|
||||
always = true;
|
||||
notification = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user