aboutsummaryrefslogtreecommitdiff
path: root/gui/stalonetray.nix
blob: d74ba1e347a7826e88cf050eec9c0283d3917adc (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 = "none";
      window_type  = "dock";
    };
  };
}