blob: c96b17a2bbc6ee52cb5f0246426162d0436870a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Disable client side decoration
prefer-no-csd
// Path to screenshot directory
screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
// Environment variables
environment {
// QT application theme
QT_QPA_PLATFORMTHEME "qt6ct"
QT_QPA_PLATFORM "wayland"
}
// Avoid popup for important keybinds
hotkey-overlay {
skip-at-startup
}
cursor {
// xcursor-theme "Banana"
// xcursor-size 34
hide-when-typing
hide-after-inactive-ms 1000
}
// Lock the screen when laptop lid is closed
switch-events {
lid-close {
spawn "qs" "-c" "noctalia-shell" "ipc" "call" "lockScreen" "lock"
}
}
|