You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
957 B
Bash
42 lines
957 B
Bash
#!/bin/sh
|
|
# x.org xinit stuff
|
|
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
|
|
|
|
# eDP's dpi
|
|
xrandr --dpi 119 --output eDP-1 --mode 1920x1080 --rate 144
|
|
|
|
# lang exports
|
|
export LANG=en_US.UTF-8
|
|
export LC_CTYPE="en_US.UTF-8"
|
|
export LC_NUMERIC="en_US.UTF-8"
|
|
export LC_TIME="en_US.UTF-8"
|
|
export LC_COLLATE="en_US.UTF-8"
|
|
export LC_MONETARY="en_US.UTF-8"
|
|
export LC_MESSAGES="en_US.UTF-8"
|
|
export LC_PAPER="en_US.UTF-8"
|
|
export LC_NAME="en_US.UTF-8"
|
|
export LC_ADDRESS="en_US.UTF-8"
|
|
export LC_TELEPHONE="en_US.UTF-8"
|
|
export LC_MEASUREMENT="en_US.UTF-8"
|
|
export LC_IDENTIFICATION="en_US.UTF-8"
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
# va-api and vdpau exports
|
|
#export LIBVA_DRIVER_NAME=iHD
|
|
#export VDPAU_DRIVER=va_gl
|
|
|
|
# merge Xr
|
|
xrdb -merge .Xresources
|
|
|
|
# gnome keyring
|
|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
|
export SSH_AUTH_SOCK
|
|
|
|
# start i3
|
|
exec prime-run i3
|