move x11 stuff into .config

This commit is contained in:
frosty 2024-05-18 04:35:17 -04:00
parent 56e43cdc61
commit c2f75631d6
4 changed files with 13 additions and 11 deletions

6
.config/X11/xinitrc Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/X11/xprofile"
[ -f "$HOME/.xprofile" ] && . "$HOME/.xprofile"
exec dbus-launch dwm

View file

@ -1,21 +1,16 @@
#!/bin/sh
xrandr --dpi 96
# shellcheck disable=SC1091
. "$XDG_DATA_HOME/screenlayout"
xwallpaper --zoom "$XDG_DATA_HOME/wallpaper"
xrdb -merge "$HOME/.Xresources"
xrdb -merge "$XDG_CONFIG_HOME/X11/xresources"
xinput set-prop "SOAI USB Gaming Mouse" "libinput Accel Profile Enabled" 0 1 0
xinput set-prop "SOAI USB Gaming Mouse" "libinput Accel Speed" 0
pipewire &
wireplumber &
pipewire-pulse &
udiskie &
dunst &
picom &
sxhkd &
dwmblocks &
exec dbus-launch dwm
autostart="pipewire wireplumber pipewire-pulse udiskie dunst picom sxhkd dwmblocks"
for program in $autostart; do
"$program" &
done >/dev/null 2>&1

View file

@ -29,3 +29,4 @@ export NODE_REPL_HISTORY="$XDG_DATA_HOME/node_repl_history"
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
export CUDA_CACHE_PATH="$XDG_CACHE_HOME/nv"
export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority"
export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc"