14 lines
371 B
Bash
Executable File
14 lines
371 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# nvidia-settings --assign CurrentMetaMode="nvidia-auto-select +0+0 { ForceFullCompositionPipeline = On }"
|
|
export XDG_RUNTIME_DIR="$HOME/.cache"
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
unset f
|
|
fi
|
|
|
|
exec dbus-launch --sh-syntax --exit-with-session i3 --shmlog-size 0
|