
Source (link to git-repo or to original if based on someone elses unmodified work): https://github.com/hanschen/ksuperkey
ksuperkey allows you to open the application launcher in KDE Plasma < 5.8 using the Super key (also known as the 'Windows key'). Unlike other solutions, it will not affect your current keyboard shortcuts, as the Super key will still act as a modifier when held down.
Note that ksuperkey does not depend on any specific desktop environment and should work fine on KDE Plasma 4, Plasma 5, GNOME Shell, Unity, Xfce, LXDE, etc.
Also note that this feature is available by default starting from Plasma 5.8.
ksuperkey is a fork of xcape (https://github.com/alols/xcape), most of the work was done by the original author Albin Olsson.
Installation
Distribution-specific instructions
Below is a list of distribution-specific ways to install ksuperkey.
Note that some packages are provided by a third party and that I do not take any responsibility for their contents.
Arch Linux: Available from the official repo ([community])
Chakra: Installed by default, available from the official repo
Debian: https://launchpad.net/~mehanik/+archive/ubuntu/ksuperkey
Fedora: https://copr.fedoraproject.org/coprs/vanoudt/KSuperkey/
Gentoo: emerge ksuperkey
Kubuntu: https://launchpad.net/~mehanik/+archive/ubuntu/ksuperkey
Mint: https://launchpad.net/~mehanik/+archive/ubuntu/ksuperkey
Netrunner: Installed by default, available from the official repo
openSUSE: https://software.opensuse.org/package/ksuperkey
PCLinuxOS: Available from the official repo
Ubuntu: https://launchpad.net/~mehanik/+archive/ubuntu/ksuperkey
Did I miss your favorite distribution? Please add a comment below with instructions on how to install it in your distro!
Compiling from source
If there is no package for ksuperkey for your distribution, you can compile the program from source following these instructions:
1. Install dependencies. On Ubuntu:
sudo apt-get install gcc make libx11-dev libxtst-dev pkg-config
On some system you'll also have to install the build-essential package.
2. Download ksuperkey-0.4 (Source) from this page and extract the tar.gz file (using e.g. Ark).
3. Go to the newly extracted directory called ksuperkey, open a terminal (press F4 in Dolphin), and run:
make
3b. Optionally, if you want to install ksuperkey to the standard PATH for all users:
sudo make install
4. Launch ksuperkey:
./ksuperkey
or by clicking on its icon. ksuperkey will run in the background. (If you did step 3b, you can just type "ksuperkey" from anywhere to launch it.)
5. Try to press the left Super key. If the application launcher does not show up, make sure that its shortcut is set to Alt+F1:
right click on the application launcher icon -> Application Launcher Settings -> Keyboard Shortcut.
6. (Optional) Make ksuperkey autostart in System Settings -> Startup and Shutdown -> Autostart -> Add Program... -> Browse button -> select the ksuperkey application.
Change mapping
If you do not like the default mapping (Super_L to Alt+F1), you can tell ksuperkey to use another mapping. The syntax is as follows:
ksuperkey -e 'ModKey=Key[|OtherKey][;NextExpression]'
Looks complicated? Do not worry, it really is not. Let us look at some examples:
Make Super key open KRunner (Alt+F2)
ksuperkey -e 'Super_L=Alt_L|F2'
We have more modifier keys on our keyboard, why not use them?
ksuperkey -e 'Control_L=Alt_L|F1;Super_L=Alt_L|F2;Shift_L=Control_L|S'
This makes the left Ctrl key generate Alt+F1 (application launcher), left Super generate Alt+F2 (KRunner), and left Shift generate Ctrl+S (save the current document) when pressed and released on their own.
Autostart
If you want to add your custom mapping to Autostart:
1. Follow the instructions in 4. under Installation.
2. When you see the dialog with the tabs (General, Permissions, Application, etc.), click on the Application tab.
3. Add the -e option to the Command field. It could look something like this:
/home/myname/ksuperkey/ksuperkey -e 'Super_L=Alt_L|F2'
Troubleshooting
1. ksuperkey does not work.
Make sure that ksuperkey is running (use e.g. the system monitor, Ctrl+Escape) and that it is running only once.
Also check that the keyboard shortcut for the application launcher is set to Alt+F1, see 4. under Installation.
Finally, make sure you do not remap the Super (Win) key, for example in System Settings -> Input Devices -> Keyboard -> Advanced or by using xmodmap.
2. When I try to change the mapping, I get 'command not found: ksuperkey'
When following the installation instructions above, kusperkey will not be installed to $PATH. This means that your shell does not know where to find ksuperkey. Therefore you have to specify the full path to the executable, e.g.
~/ksuperkey/ksuperkey -e 'Super_L=Alt_L|F2'
3. I remap my keys (e.g. using xmodmap) and ksuperkey does not behave as I want it to.
Try to restart ksuperkey every time after doing the remapping. Also make sure that the key you send has a defined keycode.
4. When I type 'make' I get "xcape.c:22:20: fatal error: stdlib.h: No such file or directory"
You need to install the build-essential package, e.g.
sudo apt-get install build-essential
Tips
You no longer have to bind Alt+F1 to the thing you want ksuperkey to trigger, since you can easily change the mapping! (See "Change mapping" section above.)
For more options, see included README.md or the Github page: https://github.com/hanschen/ksuperkey
Contact
Please post issues to Github:
https://github.com/hanschen/ksuperkey/issues
I will try to answer questions here.
5 years ago
0.4
- Allow keycodes in map expressions. [upstream]
- Fix Makefile to make it easier to package.
0.3
- XKeycodeToKeysym has been deprecated, use XkbKeycodeToKeysym instead. [upstream]
0.2
- It is now possible to define your own mappings (e.g. Super_L to Alt+F2) without editing the source code. [upstream]
0.1
- Initial release
5 years ago
0.4
- Allow keycodes in map expressions. [upstream]
- Fix Makefile to make it easier to package.
0.3
- XKeycodeToKeysym has been deprecated, use XkbKeycodeToKeysym instead. [upstream]
0.2
- It is now possible to define your own mappings (e.g. Super_L to Alt+F2) without editing the source code. [upstream]
0.1
- Initial release
Longstreet
7 years ago
Report
Mogger
7 years ago
Report
Qwerty9362
7 years ago
Report
Mogger
7 years ago
Report
Gyges
7 years ago
Compiles and works great on Sabayon, just had to install pkg-config before.
Report
Mogger
7 years ago
Report
yvanb
7 years ago
This lack of the superkey feature was the only "uncool" thing with KDE. Now it makes KDE far supperior to any other !
Thanks !
Report
Mogger
7 years ago
Report
scra5071
8 years ago
george@George-Linux-Mint-14 ~/ksuperkey $ make
cc -Wall `pkg-config --cflags xtst x11` -o ksuperkey xcape.c `pkg-config --libs xtst x11` -pthread
xcape.c:22:20: fatal error: stdlib.h: No such file or directory
compilation terminated.
make: *** [ksuperkey] Error 1
Any help would be appreciated.
Report
Mogger
8 years ago
You probably need to install the build-essential package,
sudo apt-get install build-essential
I've added a comment about it in the install instructions.
Report
jospoortvliet_double
8 years ago
Report
Mogger
8 years ago
(Besides, the ksuperkey process takes about 0.001 % RAM on my system, so performance-wise I don't think it'll make a big difference. ;)
Report
Murz
8 years ago
Report
Murz
8 years ago
So now all works well!
Many thanks for this app!
Report
Mogger
8 years ago
Report
KZKG-Gaara
8 years ago
I publish a post about this: http://blog.desdelinux.net/abrir-y-cerrar-el-menu-de-inicio-de-kde-al-presionar-la-tecla-win-o-tecla-super/
Again... thanks for all :)
Greetings
PS: Sorry for my english, it's not my primary language
Report
pacorayban
8 years ago
Thank you for this great addon !
And thanks for the aur package !
Report
Mogger
8 years ago
Report
Mogger
8 years ago
I saw some comments expressing concern that their Super+<something> shortcuts would stop working. The great news is that ksuperkey still allows you to use the Super key with shortcuts. Here's how it works:
- If you press and release Super, ksuperkey will send Alt+F1.
- However, if you hold down Super, it'll still act as a modifier key.
In other words, ksuperkey shouldn't mess with any existing shortcuts.
Report
KZKG-Gaara
8 years ago
Yes, several users asked but finally between all of us clarify, in effect, does not interrupt other key combinations.
Thanks again... and, again, sorry for my english ;)
Report
Mogger
8 years ago
It adds ksuperkey to autostart automatically.
Report
Mogger
8 years ago
Report
svah4cky0
8 years ago
Report
FraMari
8 years ago
I uploaded this package to the CCR (Chakra Community Repository).http://chakra-linux.org/ccr/packages.php?ID=4464
Thanks a lot!
Report
Mogger
8 years ago
Report