2022-06-21 01:47:36 +02:00
|
|
|
{ config, ... }:
|
2022-03-07 16:01:52 +01:00
|
|
|
{
|
|
|
|
services.stalonetray = {
|
|
|
|
enable = true;
|
|
|
|
config = {
|
|
|
|
decorations = "none";
|
|
|
|
transparent = false;
|
|
|
|
dockapp_mode = "none";
|
|
|
|
geometry = "8x1-0+0";
|
2022-06-21 01:47:36 +02:00
|
|
|
background = config.colors.defaultColorSet.background;
|
2022-03-07 16:01:52 +01:00
|
|
|
kludges = "force_icons_size";
|
|
|
|
grow_gravity = "NW";
|
|
|
|
icon_gravity = "NW";
|
|
|
|
icon_size = 30;
|
|
|
|
sticky = true;
|
|
|
|
window_type = "dock";
|
|
|
|
window_layer = "bottom";
|
|
|
|
no_shrink = true;
|
|
|
|
skip_taskbar = true;
|
|
|
|
slot_size = 40;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|