mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 18:02:13 +02:00
21 lines
390 B
Bash
21 lines
390 B
Bash
# Enable picom
|
|
picom &
|
|
|
|
# Enable background
|
|
feh --bg-fill $HOME/.local/share/backgrounds/background.jpg
|
|
|
|
# Enable natural scrolling on the touchpad
|
|
xinput set-prop 9 298 1
|
|
|
|
# Enable middle button emulation on the touchpad
|
|
xinput set-prop 9 308 1
|
|
|
|
# Enable two-fingers click
|
|
xinput set-prop 9 306 0 1
|
|
|
|
# Set the compose key
|
|
setxkbmap -option compose:ralt
|
|
|
|
# Start i3 window manager
|
|
exec i3
|