Created
October 11, 2023 11:56
-
-
Save madprops/4802f624e933628708de4824a19a25c0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
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 | |
export QT_QPA_PLATFORMTHEME=qt5ct | |
export XDG_SESSION_TYPE=x11 | |
eval $(gnome-keyring-daemon --start) | |
export SSH_AUTH_SOCK | |
xrandr --output HDMI-A-0 --primary | |
xrandr --output HDMI-A-0 --left-of DisplayPort-0 | |
exec awesome |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment