blob: 15f05adbba693027273e5e80c1a9794a1a742e1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
# Note to enable the HUD menu by using alt
cat << _EOF
==> Run the following commands to bind the Alt keys to plasma-hud:
------------------------------------------------------------------------------
kwriteconfig5 --file ~/.config/kwinrc --group ModifierOnlyShortcuts --key Alt "com.github.zren.PlasmaHUD,/PlasmaHUD,com.github.zren.PlasmaHUD,toggleHUD"
qdbus org.kde.KWin /KWin reconfigure
_EOF
}
post_upgrade() {
post_install
}
|