Change global notif. keybinds to avoid conflicts

Change the account next/prev binds back to Alt+(Shift+)M,
make mute notif Ctrl+Alt+N, mute except higlights Ctrl+Alt+H
This commit is contained in:
miruka 2021-02-28 17:19:12 -04:00
parent e9af47e1c7
commit 156f89aca1
2 changed files with 5 additions and 5 deletions

View File

@ -1,9 +1,9 @@
# TODO # TODO
- enter in field
- sfx selection - sfx selection
- custom action - custom action
- fix flickable popups can't be flicked by keyboard
- seen tooltips can't be shown on image hover - seen tooltips can't be shown on image hover
- quick settings - quick settings

View File

@ -253,10 +253,10 @@ class Keys:
# Toggle muting all notifications in the running client, # Toggle muting all notifications in the running client,
# except highlights (e.g. replies or keywords) # except highlights (e.g. replies or keywords)
notifications_highlights_only = ["Alt+M"] notifications_highlights_only = ["Ctrl+Alt+H"]
# Toggle muting all notifications in the running client # Toggle muting all notifications in the running client
notifications_mute = ["Alt+Shift+M"] notifications_mute = ["Ctrl+Alt+N"]
# Toggle the QML developer console. Type ". help" inside it for more info. # Toggle the QML developer console. Type ". help" inside it for more info.
qml_console = ["F1"] qml_console = ["F1"]
@ -343,8 +343,8 @@ class Keys:
# list. What causes a highlight is controlled by push rules # list. What causes a highlight is controlled by push rules
# (editable in GUI account settings): by default, this includes # (editable in GUI account settings): by default, this includes
# when your name is mentioned, replied to, or messages with keywords. # when your name is mentioned, replied to, or messages with keywords.
previous_highlight = ["Alt+Shift+H"] previous_highlight = ["Alt+Shift+M"]
next_highlight = ["Alt+H"] next_highlight = ["Alt+M"]
class AtIndex: class AtIndex:
# Switch to room number X in the current account. # Switch to room number X in the current account.