Added polybar.

There is an issue where the default systemd target in home-manager is of
the wrong type. So it will periodically close & restart.
This commit is contained in:
James Patrick 2022-07-16 18:50:24 -04:00
parent fadb070332
commit 70c137c946
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,6 @@ in with lib; {
i3status # gives you the default i3 status bar
playerctl
scrot
rofi
xclip
xdotool
];
@ -57,6 +56,7 @@ in with lib; {
enable = true;
package = pkgs.i3-gaps;
config = {
bars = [ ];
colors = {
focusedInactive = {
background = "#1E1E2E";
@ -129,6 +129,7 @@ in with lib; {
startup = [
{ command = "${pkgs.autotiling}/bin/autotiling"; }
{ command = "${pkgs.feh}/bin/feh --bg-scale ${wallpaper}"; }
{ command = "systemctl --user restart polybar.service"; }
];
};
};