First commit
This commit is contained in:
commit
08c122f3fd
23 changed files with 1960 additions and 0 deletions
32
.config/X11/xinitrc
Executable file
32
.config/X11/xinitrc
Executable file
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Enable Tear Free
|
||||
xrandr --output eDP --set TearFree on
|
||||
|
||||
# Load xresources
|
||||
xrdb --merge $HOME/.config/X11/xresources
|
||||
|
||||
# Disable mouse acceleration
|
||||
xinput --set-prop 18 'libinput Accel Speed' 0
|
||||
xinput --set-prop 18 'libinput Accel Profile Enabled' 0, 1
|
||||
|
||||
# Hide the mouse after 5 seconds
|
||||
unclutter --timeout 5 &
|
||||
|
||||
# Fix mouse cursor
|
||||
xsetroot -cursor_name left_ptr
|
||||
|
||||
# Replace caps lock with escape
|
||||
setxkbmap -option caps:escape
|
||||
|
||||
# Use the xresources settings
|
||||
xrdb -merge $HOME/.Xresources
|
||||
|
||||
# Recompile xmonad
|
||||
xmonad --recompile
|
||||
|
||||
# Set wallpaper
|
||||
xwallpaper --stretch $HOME/pics/wallpapers/cowppuccin.png
|
||||
|
||||
# Run xmonad with dbus
|
||||
exec dbus-launch --exit-with-session xmonad
|
Loading…
Add table
Add a link
Reference in a new issue