Does anybody here use Conky?
I do myself with a full top to bottom right edge 2" wide on my 23" monitor. I've used it for years and don't mind it being there at all, but lately I've been wondering if there was a way to place Conky into a wide vertical panel, and make the panel auto-hide. Since all my Conky is static, (I can't click on anything for some action result), then in theory, set as described above, Conky would be hidden until or unless I took the pointer to that particular edge of the screen, whereupon Conky would come into view.
I know this is Porteus, and that's why I put this here, in General Chat. Just wondering if anyone here might have an idea first?
Sean
Conky on demand
- brokenman
- Site Admin
- Posts: 6104
- Joined: 27 Dec 2010, 03:50
- Distribution: Porteus v4 all desktops
- Location: Brazil
- Contact:
Re: Conky on demand
This looks like what you want.
https://github.com/stesim/conky-configs ... enshot.png
You can find the files used here:
http://conky-kungfu.wikidot.com/horizontalpanel
http://ubuntuforums.org/showthread.php?t=1207620
https://github.com/stesim/conky-configs ... enshot.png
You can find the files used here:
Here are some other examples:
http://conky-kungfu.wikidot.com/horizontalpanel
http://ubuntuforums.org/showthread.php?t=1207620
How do i become super user?
Wear your underpants on the outside and put on a cape.
Wear your underpants on the outside and put on a cape.
- ncmprhnsbl
- DEV Team
- Posts: 3753
- Joined: 20 Mar 2012, 03:42
- Distribution: v5.0-64bit
- Location: australia
- Contact:
Re: Conky on demand
conky can be any shape/position you want, and has an "own_window_type panel" option, but no inbuilt 'hiding' ability. tikoif there was a way to place Conky into a wide vertical panel, and make the panel auto-hide.
a small script to turn conky on and off, might do the trick:
Code: Select all
#!/bin/bash
#
if [ "$(ps -C conky -o pid=)" ]; then
killall conky &
exit 0
else
conky &
exit 0
fi
to bind this to a screen edge requires a DE/wm that has that feature like KDE or compiz, otherwise a keyboard shortcut....
Forum Rules : https://forum.porteus.org/viewtopic.php?f=35&t=44