input tweak
This commit is contained in:
parent
261c686d3d
commit
f7c48e7853
|
@ -1,5 +1,6 @@
|
||||||
# video
|
# video
|
||||||
profile=gpu-hq
|
profile=gpu-hq
|
||||||
|
gpu-context=wayland
|
||||||
video-sync=display-resample
|
video-sync=display-resample
|
||||||
x11-bypass-compositor=yes
|
x11-bypass-compositor=yes
|
||||||
display-fps=60
|
display-fps=60
|
||||||
|
|
|
@ -32,6 +32,9 @@ load-module module-augment-properties
|
||||||
### Should be after module-*-restore but before module-*-detect
|
### Should be after module-*-restore but before module-*-detect
|
||||||
load-module module-switch-on-port-available
|
load-module module-switch-on-port-available
|
||||||
|
|
||||||
|
# automatically switch to newly-connected devices
|
||||||
|
load-module module-switch-on-connect
|
||||||
|
|
||||||
### Load audio drivers statically
|
### Load audio drivers statically
|
||||||
### (it's probably better to not load these drivers manually, but instead
|
### (it's probably better to not load these drivers manually, but instead
|
||||||
### use module-udev-detect -- see below -- for doing this automatically)
|
### use module-udev-detect -- see below -- for doing this automatically)
|
||||||
|
|
|
@ -48,6 +48,7 @@ smart_gaps on
|
||||||
# Floating mod
|
# Floating mod
|
||||||
for_window [app_id="pavucontrol"] floating enable
|
for_window [app_id="pavucontrol"] floating enable
|
||||||
for_window [app_id="org.remmina.Remmina" title="Remmina Remote Desktop Client"] floating enable
|
for_window [app_id="org.remmina.Remmina" title="Remmina Remote Desktop Client"] floating enable
|
||||||
|
for_window [app_id="desktopclient.nextcloud.com.nextcloud"] floating enable
|
||||||
for_window [class="TeamViewer"] floating enable
|
for_window [class="TeamViewer"] floating enable
|
||||||
|
|
||||||
for_window [class="feh" title="Pinned screenshot"] {
|
for_window [class="feh" title="Pinned screenshot"] {
|
||||||
|
@ -88,16 +89,32 @@ floating_modifier $mod
|
||||||
# disable focus follow mouse
|
# disable focus follow mouse
|
||||||
#focus_follows_mouse no
|
#focus_follows_mouse no
|
||||||
|
|
||||||
|
# Touchpad
|
||||||
input "2:18:FocalTechPS/2_FocalTech_Touchpad" {
|
input "2:18:FocalTechPS/2_FocalTech_Touchpad" {
|
||||||
tap enabled
|
tap enabled
|
||||||
tap_button_map lrm
|
tap_button_map lrm
|
||||||
middle_emulation enabled
|
middle_emulation enabled
|
||||||
|
scroll_method two_finger
|
||||||
|
dwt enable
|
||||||
|
drag enable
|
||||||
|
}
|
||||||
|
|
||||||
|
# Touchscreen
|
||||||
|
input "1003:35393:Atmel" {
|
||||||
|
map_to_output eDP-1
|
||||||
|
tap enabled
|
||||||
|
drag enable
|
||||||
}
|
}
|
||||||
|
|
||||||
input "*" {
|
input "*" {
|
||||||
|
# Keyboard
|
||||||
xkb_layout us
|
xkb_layout us
|
||||||
xkb_variant altgr-intl
|
xkb_variant altgr-intl
|
||||||
xkb_options caps:super
|
xkb_options caps:super
|
||||||
|
|
||||||
|
# Mouse
|
||||||
|
accel_profile flat
|
||||||
|
pointer_accel 0
|
||||||
}
|
}
|
||||||
|
|
||||||
### Key bindings
|
### Key bindings
|
||||||
|
|
Loading…
Reference in New Issue