You are not logged in.

#1 2013-02-02 15:30:30

nexxx
Member
From: Wolfsberg
Registered: 2010-09-15
Posts: 22

[Solved] System Tray without any Toolbar (Dock)

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

#2 2013-02-02 15:53:06

progandy
Member
Registered: 2012-05-17
Posts: 5,307

Re: [Solved] System Tray without any Toolbar (Dock)

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
fi

Last edited by progandy (2013-02-02 16:08:12)


| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |

Offline

#3 2013-02-02 16:15:46

Reded
Member
From: Manchester, England
Registered: 2012-02-21
Posts: 242

Re: [Solved] System Tray without any Toolbar (Dock)

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 smile

EDIT:

Seems the above post links to that too! tongue

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

#4 2013-02-02 16:25:16

nexxx
Member
From: Wolfsberg
Registered: 2010-09-15
Posts: 22

Re: [Solved] System Tray without any Toolbar (Dock)

Thanks for your answers, this is great!
I mark topic as solved

Offline

Board footer

Powered by FluxBB