web-dev-qa-db-fra.com

Comment faire en sorte que les liaisons par pavé numérique telles que Ctrl + Alt + 1 fonctionnent dans KDE?

Je lance la dernière version Kubuntu KDE, essayait de configurer les liaisons de touches de bureau virtuel telles que celles que j'avais utilisées dans Gnome: Ctrl+Alt+Number_Of_Desktop.

J'ai toujours utilisé pavé numérique pour appuyer sur le chiffre, mais cela ne veut pas fonctionner dans KDE.
Lorsque j'appuie sur les chiffres situés au-dessus des touches qwerty, ils fonctionnent! Mais pas le pavé numérique.
Pouvez-vous suggérer où je devrais creuser?

4
ko1Rn

Un rapport de bogue: Bug 183458 - Les touches du pavé numérique (clavier) n'étaient pas mappées correctement lors de la définition des raccourcis globaux/ https://bugs.kde.org/show_bug.cgi?id=183458

Le rapport de bogue a une solution de contournement "Commentaire n ° 17 de Pistos"

4
user26687

oui sa fonctionne ^ après l'installation xbindkeys, essayez-le sur votre distribution juste configurer le fichier ~/.xbindkeysrc et en profiter

ne vous inquiétez pas, ce paquet a une page de manuel utile.

ma configuration .xbindkeys:

## begin .xbindkeys

# Switch between desktops

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Switch One Desktop to the Left'"
Control + Shift + Mod2 + h

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Switch One Desktop to the Right'"
Control + Shift + Mod2 + l

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Switch One Desktop Down'"
Control + Shift + Mod2 + j

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Switch One Desktop Up'"
Control + Shift + Mod2 + k

# Zoom desktop with the mouse

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut view_zoom_in"
Mod4 + b:4

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut view_zoom_out"
Mod4 + b:5

# Move the current window to a desktop

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window One Desktop to the Left'"
Control + Mod2 + Mod4 + h

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window One Desktop to the Right'"
Control + Mod2 + Mod4 + l

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window One Desktop Down'"
Control + Mod2 + Mod4 + j

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window One Desktop Up'"
Control + Mod2 + Mod4 + k

# Minimize the current window

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Minimize'"
Control + Mod2 + Mod4 + m

# Tile windows

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Quick Tile Bottom Left'"
Control + Alt + KP_1

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Quick Tile Bottom Right'"
Control + Alt + KP_3

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Quick Tile Top Left'"
Control + Alt + KP_7

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Quick Tile Top Right'"
Control + Alt + KP_9

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Quick Tile Left'"
Control + Alt + KP_4

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Quick Tile Right'"
Control + Alt + KP_6

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Maximize'"
Control + Alt + KP_5

"qdbus org.kde.kglobalaccel /component/kwin org.kde.kglobalaccel.Component.invokeShortcut 'Window Grow Horizontal'"
Control + Alt + KP_8

## end .xbindkeys

https://github.com/gerardbm/dotfiles/blob/master/.xbindkeysrc

0
Behnam Bagheri