formatting
This commit is contained in:
parent
407bf46d5d
commit
c12eaad5f0
6 changed files with 17 additions and 44 deletions
|
|
@ -4,19 +4,15 @@ let
|
|||
base = {
|
||||
services.polybar = {
|
||||
enable = true;
|
||||
package = pkgs.polybar.override {
|
||||
pulseSupport = true;
|
||||
};
|
||||
script = ''for m in $(polybar --list-monitors | ${pkgs.coreutils}/bin/cut -d":" -f1); do
|
||||
MONITOR=$m polybar --reload bottom &
|
||||
done
|
||||
'';
|
||||
package = pkgs.polybar.override { pulseSupport = true; };
|
||||
script = ''
|
||||
for m in $(polybar --list-monitors | ${pkgs.coreutils}/bin/cut -d":" -f1); do
|
||||
MONITOR=$m polybar --reload bottom &
|
||||
done
|
||||
'';
|
||||
config = ./config.ini;
|
||||
extraConfig = builtins.readFile ./modules.ini +
|
||||
builtins.readFile ./colors.ini;
|
||||
extraConfig = builtins.readFile ./modules.ini
|
||||
+ builtins.readFile ./colors.ini;
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
home-manager.users.moritz = { ... }: (base);
|
||||
}
|
||||
in { home-manager.users.moritz = { ... }: (base); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue