shortcut setup script
This commit is contained in:
parent
5b2ba5d9d0
commit
bcc7291145
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
# 1. run this script to clear all default KDE shortcuts
|
||||
# 2. add missing applications to shortcuts config (bitwarden, konsole)
|
||||
# 3. import kde-shortcuts.kksrc
|
||||
|
||||
hotkeysRC="$HOME/.config/kglobalshortcutsrc"
|
||||
|
||||
# Remove application launching shortcuts.
|
||||
sed -i 's/_launch=[^,]*/_launch=none/g' "$hotkeysRC"
|
||||
|
||||
# Remove other global shortcuts.
|
||||
sed -i 's/^\([^_][^=]*\)=[^,]*,/\1=none,/g' "$hotkeysRC"
|
||||
|
||||
# Reload hotkeys.
|
||||
kquitapp5 kglobalaccel && sleep 2s && kglobalaccel5 &
|
|
@ -38,3 +38,6 @@ _launch=Meta+Return
|
|||
|
||||
[yakuake][Global Shortcuts]
|
||||
toggle-window-state=Meta+`
|
||||
|
||||
[org.kde.krunner.desktop][Global Shortcuts]
|
||||
_launch=Meta+Space
|
||||
|
|
Loading…
Reference in New Issue