Lots: Fix being unable to start session with SDDM

This commit is contained in:
Salt 2020-07-08 00:39:39 -05:00
parent 6a8010d5ba
commit 7400d68b44
3 changed files with 12 additions and 18 deletions

@ -1 +1 @@
Subproject commit b054d1d1cacb4bec8ecdcd0e62f04d1ac4586eb0
Subproject commit 9bf854d22f3ac13800fa79bd20403fb57c3f6f3b

View File

@ -1,5 +1,15 @@
#!/bin/bash
if [ -n "$FIRESTARTER" ]; then
echo "Firestarter is already running in this session"
exit 50
fi
for term in mate-terminal lxterminal xfce4-terminal konsole urxvt xterm; do
if command -v "$term" > /dev/null 2>&1; then
export TERMINAL="$term"
break
fi
done
if [ -x "$HOME/.wpgen/wpgen" ]; then
resolutions=($(xrandr -q | grep '*' | awk '{print $1}'))
for res in ${resolutions[@]}; do

View File

@ -1,17 +0,0 @@
#!/bin/sh
export XSESSION_HAS_SOURCED=1
for term in mate-terminal lxterminal xfce4-terminal konsole urxvt xterm; do
if command -v "$term" > /dev/null 2>&1; then
export TERMINAL="$term"
break
fi
done
if command -v qt5ct > /dev/null 2>&1; then
export QT_QPA_PLATFORMTHEME=qt5ct
export QT_AUTO_SCREEN_SCALE_FACTOR=0
fi
export PATH="$PATH:$HOME/.bin:$HOME/.local/bin"
if command -v go > /dev/null 2>&1; then
export PATH="$PATH:$HOME/.local/go/bin"
fi

1
.xsessionrc Symbolic link
View File

@ -0,0 +1 @@
.xinitrc