From a576fc0630c4eed5263f29ab671b7f4a26f2a698 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 25 Jan 2019 21:43:01 +0100 Subject: Add stalonetray and nm-applet autostart on athena It took me more time than it should have to get stalonetray to display below all windows as a _widget_ on the desktop... --- gui/stalonetray.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 gui/stalonetray.nix (limited to 'gui/stalonetray.nix') diff --git a/gui/stalonetray.nix b/gui/stalonetray.nix new file mode 100644 index 0000000..ca3baaf --- /dev/null +++ b/gui/stalonetray.nix @@ -0,0 +1,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"; + }; + }; +} -- cgit v1.2.3