You are not logged in.
I am wondering if there is a possibility to show the systray in an seperate window, when using a shortcut (e.g. CTRL+SUPER+S). For example: When you hit CTRL+SUPER+S then a small window pops up which contains all systray icons.
I am running an openbox system without any toolbar. But I want to access the systray, without starting (and killing afterwards) a toolbar, like tint2.
Anyone has some ideas or programs for this problem?
Thanks in advance!
Last edited by nexxx (2013-02-02 16:25:33)
Offline
You could use stalonetray and bind scripts to a hotkey:
https://bbs.archlinux.org/viewtopic.php … 9#p1115339
#!/bin/bash
# toggle visibility of stalonetray
if ! xdotool search --onlyvisible --name "stalonetray" windowunmap ; then
eval $(xdotool getmouselocation --shell 2> /dev/null)
xdotool search --name "stalonetray" windowmap windowmove $X $Y windowactivate
fiLast edited by progandy (2013-02-02 16:08:12)
| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |
Offline
https://bbs.archlinux.org/viewtopic.php?id=142931
This thread was my quest for such a tool - I ended up using this script bound to a keyboard shortcut:
eval $(xdotool getmouselocation --shell 2> /dev/null)
xdotool search --name "stalonetray" windowmap windowmove $X $Y windowactivate A few other options were explored on the thread too, which is why I linked that too ![]()
EDIT:
Seems the above post links to that too! ![]()
Last edited by Reded (2013-02-02 16:16:25)
"Some humans would do anything to see if it was possible to do it. If you put a large switch in some cave somewhere, with a sign on it saying "End-of-the-World Switch. PLEASE DO NOT TOUCH", the paint wouldn't even have time to dry."
Offline
Thanks for your answers, this is great!
I mark topic as solved
Offline