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.
37 lines
957 B
Plaintext
37 lines
957 B
Plaintext
2 years ago
|
#!/bin/sh
|
||
|
# 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"
|
||
|
|
||
|
# wayland fixes
|
||
|
export XDG_SESSION_TYPE=wayland
|
||
|
export MOZ_ENABLE_WAYLAND=1
|
||
|
export GTK_USE_PORTAL=0
|
||
|
export SDL_VIDEODRIVER=wayland
|
||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||
|
export QT_QPA_PLATFORM=wayland
|
||
|
export XDG_CURRENT_DESKTOP=Sway
|
||
|
export XDG_SESSION_DESKTOP=Sway
|
||
|
|
||
|
# gnome keyring
|
||
|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
||
|
export SSH_AUTH_SOCK
|
||
|
|
||
|
# start sway
|
||
|
sway --unsupported-gpu
|