i3status changes
This commit is contained in:
parent
7d0289f0dd
commit
df357c7816
2 changed files with 2 additions and 3 deletions
|
@ -10,5 +10,6 @@ pkgs: [
|
|||
arc-mono-gtk-theme = pkgs.callPackage ./arc-mono-gtk-theme.nix {};
|
||||
vim-darcula-theme = pkgs.callPackage ./vim-darcula-theme.nix {};
|
||||
sddm-i3-theme = pkgs.callPackage ./sddm-i3-theme.nix {};
|
||||
i3status = prev.i3status.overrideAttrs (_: { patches = [ ../files/i3status.patch ]; });
|
||||
})
|
||||
]
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ config, pkgs, ... }:
|
||||
let
|
||||
HOME = config.home-manager.users.krizej.home.homeDirectory;
|
||||
i3status_cpufix = pkgs.i3status.overrideAttrs (_: { patches = [ ../files/i3status.patch ]; });
|
||||
in {
|
||||
services.xserver.windowManager.i3.enable = true;
|
||||
home-manager.users.krizej = {
|
||||
|
@ -45,7 +44,7 @@ in {
|
|||
{
|
||||
inherit fonts;
|
||||
trayOutput = "primary";
|
||||
statusCommand = "${i3status_cpufix}/bin/i3status";
|
||||
statusCommand = "${pkgs.i3status}/bin/i3status";
|
||||
}
|
||||
];
|
||||
|
||||
|
@ -169,7 +168,6 @@ in {
|
|||
programs.i3status = {
|
||||
enable = true;
|
||||
enableDefault = false;
|
||||
package = i3status_cpufix;
|
||||
|
||||
general = {
|
||||
interval = 1;
|
||||
|
|
Loading…
Reference in a new issue