This commit is contained in:
Ceres 2025-09-26 10:11:12 +01:00
commit dd8780cce6
6 changed files with 22 additions and 12 deletions

View file

@ -24,6 +24,7 @@ source = $hl/decoration.conf
source = $hl/group.conf source = $hl/group.conf
source = $hl/execs.conf source = $hl/execs.conf
source = $hl/rules.conf source = $hl/rules.conf
source = $hl/gestures.conf
source = $hl/keybinds.conf source = $hl/keybinds.conf
# User configs # User configs

View file

@ -8,7 +8,7 @@ env = XCURSOR_SIZE, $cursorSize
# ######## Toolkit backends ######## # ######## Toolkit backends ########
env = GDK_BACKEND, wayland,x11 env = GDK_BACKEND, wayland,x11
env = QT_QPA_PLATFORM, wayland;xcb env = QT_QPA_PLATFORM, wayland;xcb
env = SDL_VIDEODRIVER, wayland,x11 env = SDL_VIDEODRIVER, wayland,x11,windows
env = CLUTTER_BACKEND, wayland env = CLUTTER_BACKEND, wayland
env = ELECTRON_OZONE_PLATFORM_HINT, auto env = ELECTRON_OZONE_PLATFORM_HINT, auto

View file

@ -0,0 +1,13 @@
gestures {
workspace_swipe_distance = 700
workspace_swipe_cancel_ratio = 0.15
workspace_swipe_min_speed_to_force = 5
workspace_swipe_direction_lock = true
workspace_swipe_direction_lock_threshold = 10
workspace_swipe_create_new = true
}
gesture = $workspaceSwipeFingers, horizontal, workspace
gesture = $gestureFingers, up, special, special
gesture = $gestureFingers, down, dispatcher, exec, caelestia toggle specialws
gesture = $gestureFingersMore, down, dispatcher, exec, systemctl suspend-then-hibernate

View file

@ -16,13 +16,7 @@ binds {
scroll_event_delay = 0 scroll_event_delay = 0
} }
gestures { cursor {
workspace_swipe = true hotspot_padding = 1
workspace_swipe_distance = 700
workspace_swipe_fingers = $workSpaceSwipeFingers
workspace_swipe_cancel_ratio = 0.15
workspace_swipe_min_speed_to_force = 5
workspace_swipe_direction_lock = true
workspace_swipe_direction_lock_threshold = 10
workspace_swipe_create_new = true
} }

View file

@ -8,7 +8,9 @@ $browser = zen
# Touchpad # Touchpad
$touchpadDisableTyping = true $touchpadDisableTyping = true
$touchpadScrollFactor = 0.3 $touchpadScrollFactor = 0.3
$workSpaceSwipeFingers = 4 $workspaceSwipeFingers = 4
$gestureFingers = 3
$gestureFingersMore = 4
# Blur # Blur
$blurEnabled = true $blurEnabled = true

View file

@ -1,7 +1,7 @@
# ######## Toolkit backends ######## # ######## Toolkit backends ########
export GDK_BACKEND='wayland,x11' export GDK_BACKEND='wayland,x11'
export QT_QPA_PLATFORM='wayland;xcb' export QT_QPA_PLATFORM='wayland;xcb'
export SDL_VIDEODRIVER='wayland,x11' export SDL_VIDEODRIVER='wayland,x11,windows'
export CLUTTER_BACKEND='wayland' export CLUTTER_BACKEND='wayland'
export ELECTRON_OZONE_PLATFORM_HINT='auto' export ELECTRON_OZONE_PLATFORM_HINT='auto'