diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-10 08:18:57 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-10 08:18:57 -0800 |
commit | 4a442057501743ed8f679c35a9085cdd8f9fcd07 (patch) | |
tree | 758f1c053da5b90edcd661fef87e98378c99163d | |
parent | polybar: rename configuration files (diff) | |
download | world-4a442057501743ed8f679c35a9085cdd8f9fcd07.tar.gz |
home-manager: fix the script for polybar
The path was incorrectly set up.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/i3.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/i3.nix b/users/fcuny/i3.nix index 3d46edf..8366111 100644 --- a/users/fcuny/i3.nix +++ b/users/fcuny/i3.nix @@ -40,6 +40,6 @@ in services.polybar = { enable = true; package = pkgs.polybarFull; - script = "polybar --config=${config.xdg.configFile."polybar/config".source}/$(hostname -s).conf &"; + script = "polybar --config=${config.xdg.configFile."polybar".source}/$(hostname -s).ini -r alone &"; }; } |