Skip to content

Commit

Permalink
feat(apps): added stalonetray to xmonad configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Jan 4, 2025
1 parent 03b229b commit 1e231c6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions home-manager/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
./redshift.nix
./rofi.nix
./tmux.nix
./stalonetray.nix
];
}
16 changes: 16 additions & 0 deletions home-manager/stalonetray.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{ config, lib, ... }:
with lib;
{
options.services.stalonetray.wittano.enable = mkEnableOption "Custom stalonetray configuration";

config = {
services.stalonetray = {
enable = config.services.stalonetray.wittano.enable;
config = {
background = "#24273a";
icon_size = 28;
geometry = "1x1+900+19";
};
};
};
}
2 changes: 2 additions & 0 deletions nixos/desktop/xmonad/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ in
extraConfig = builtins.readFile ./xmobarrc;
};

services.stalonetray.wittano.enable = true;

xsession.windowManager.xmonad = {
inherit (unstable) haskellPackages;

Expand Down

0 comments on commit 1e231c6

Please sign in to comment.