diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..440a870 --- /dev/null +++ b/README.md | |||
@@ -0,0 +1,18 @@ | |||
1 | The version in this branch adds following feature: | ||
2 | |||
3 | When Fluxbox creates system tray icons it adds them from right to left, | ||
4 | so in an autostart situation the order is effectively random. | ||
5 | |||
6 | With this version you can add following options to .fluxbox/init: | ||
7 | |||
8 | (o) session.screen0.systray.pinRight | ||
9 | |||
10 | (o) session.screen0.systray.pinLeft | ||
11 | |||
12 | which can be set to a comma seperated list of window classnames | ||
13 | (retrieveable with xprop). The system tray icons will then be sorted | ||
14 | accordingly and retain the order in which they are specified. | ||
15 | |||
16 | consider a system tray: A C B D E F | ||
17 | with pinRight = A, B and pinLeft = E, F it will look like | ||
18 | E F [C D E] A B while the icons in [] are un-ordered as usual. | ||