dotfiles/.config/X11/xprofile

17 lines
477 B
Plaintext
Raw Normal View History

2024-05-17 20:46:22 -04:00
#!/bin/sh
xrandr --dpi 96
2024-05-18 04:35:17 -04:00
2024-05-17 20:46:22 -04:00
# shellcheck disable=SC1091
. "$XDG_DATA_HOME/screenlayout"
xwallpaper --zoom "$XDG_DATA_HOME/wallpaper"
2024-05-18 04:35:17 -04:00
xrdb -merge "$XDG_CONFIG_HOME/X11/xresources"
2024-05-17 20:46:22 -04:00
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
2024-05-18 04:35:17 -04:00
autostart="pipewire wireplumber pipewire-pulse udiskie dunst picom sxhkd dwmblocks"
for program in $autostart; do
"$program" &
done >/dev/null 2>&1