blob: efc55a5868fdfccc49e7049e920100e82f5decfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
if [ -f /home/cafebabe/.scripts/statusbar.sh ]; then
. /home/cafebabe/.scripts/statusbar.sh
fi
export GTK_IM_MODULE='ibus'
export QT_IM_MODULE='ibus'
export XMODIFIERS='@im=ibus'
dbus-update-activation-environment \
--systemd DBUS_SESSION_BUS_ADDRESS DISPLAY XAUTHORITY
rfkill block all
ibus-daemon -dxrR
xrandr --auto --output HDMI-A-0 --mode 1920x1080 --primary
xrandr --auto --output DisplayPort-2 --mode 1600x900 --right-of HDMI-A-0
xwallpaper --maximize "$(/usr/bin/ls -d -1 /media/HDD/Pictures/Wallpaper/* | shuf -n1)" &
compton --config /home/cafebabe/.config/compton/compton.conf -b
exec dwm
|