Description: KWin script providing shortcut support for any app in the spirit of Visor, Yakuake, Guake, etc. Currently wired to use Terminal, but can be easily modified for other apps.
I'm new to kwin scripting, so your script was very useful to me. I modified it to toggle the keepAbove property of my Conky window. Now I can get my system info at a glance. :)
It's worth noting that I had to make the following change to get registerShortcut() to work:
var myCallback = function shortcutHook() {
I then used myCallback in place of shortcutHook in the registerShortcut() call.
Thanks!
Ratings & Comments
1 Comment
I'm new to kwin scripting, so your script was very useful to me. I modified it to toggle the keepAbove property of my Conky window. Now I can get my system info at a glance. :) It's worth noting that I had to make the following change to get registerShortcut() to work: var myCallback = function shortcutHook() { I then used myCallback in place of shortcutHook in the registerShortcut() call. Thanks!