aboutsummaryrefslogtreecommitdiff
path: root/gui/stalonetray.nix
blob: ca3baafef1e753a3f59522423ae85ead74706b0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, ... }:

{
  services.stalonetray = {
    enable = true;

    config = {
      decorations  = "none";
      icon_size    = 48;
      geometry     = "5x1+10-10";
      transparent  = false;
      grow_gravity = "E";
      background   = "#000000";
      dockapp_mode = "none";
      window_layer = "bottom";
      window_strut = "bottom";
      window_type  = "dock";
    };
  };
}