diff options
| author | Joel R. <59534812+h0useofdupree@users.noreply.github.com> | 2025-07-29 04:48:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-29 12:48:51 +1000 |
| commit | 2539f7b68c19165d233fb4a2eab5dd27715988d7 (patch) | |
| tree | 3074154f0cb8e20d11184d8f8b8c8051e78ccb3d /config | |
| parent | session: add custom session/lock menu button commands (#292) (diff) | |
| download | caelestia-shell-2539f7b68c19165d233fb4a2eab5dd27715988d7.tar.gz caelestia-shell-2539f7b68c19165d233fb4a2eab5dd27715988d7.tar.bz2 caelestia-shell-2539f7b68c19165d233fb4a2eab5dd27715988d7.zip | |
session: add optional vim-like keybinds (#291)
Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
Diffstat (limited to 'config')
| -rw-r--r-- | config/SessionConfig.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/SessionConfig.qml b/config/SessionConfig.qml index e47f294..22b926c 100644 --- a/config/SessionConfig.qml +++ b/config/SessionConfig.qml @@ -3,7 +3,9 @@ import Quickshell.Io JsonObject { property bool enabled: true property int dragThreshold: 30 + property bool vimKeybinds: false property Commands commands: Commands{} + property Sizes sizes: Sizes {} component Commands: JsonObject { |