dotfiles/.xinitrc

29 lines
719 B
Text
Raw Normal View History

2025-07-31 07:31:16 +03:30
#!/bin/zsh
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
exec dbus-launch --sh-syntax --exit-with-session "$0"
fi
2025-07-15 10:44:21 +03:30
export XDG_SESSION_TYPE=x11
export XDG_CURRENT_DESKTOP=dwm
export GDK_BACKEND=x11
export QT_QPA_PLATFORM=xcb
2025-07-31 07:31:16 +03:30
export XCURSOR_THEME=Adwaita
export XCURSOR_SIZE=24
2025-07-15 10:44:21 +03:30
xset r rate 200 35
xinput set-prop "ELAN0709:00 04F3:30A0 Touchpad" "libinput Tapping Enabled" 1 &
2025-07-31 07:31:16 +03:30
xrdb -merge ~/.Xresources
2025-07-15 10:44:21 +03:30
picom --config ~/.config/picom/picom.conf &
sxhkd &
2025-06-15 18:02:50 +03:30
slstatus &
2025-07-15 10:44:21 +03:30
/usr/libexec/polkit-gnome-authentication-agent-1 &
pulseaudio --start &
setxkbmap -option caps:escape &
2025-07-31 07:31:16 +03:30
xwallpaper --zoom files/pics/walls/wallhaven-y8g1el_1920x1080.png &
dunst &
notify-send "test"
brightnessctl -d intel_backlight set 100%
2025-07-15 10:44:21 +03:30
2025-06-15 18:02:50 +03:30
exec dwm