blob: f0aeaa64695556ea5afe3cd0088027486374d195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
systemctl --user import-environment DISPLAY XAUTHORITY
if command -v dbus-update-activation-environment >/dev/null 2>&1; then
dbus-update-activation-environment DISPLAY XAUTHORITY
fi
[ -f ~/.Xresources ] && xrdb -merge -I$HOME ~/.Xresources
setxkbmap hu -option caps:escape &
flameshot &
~/.fehbg &
slstatus &
picom --no-vsync &
exec ~/.startdwm
|