Update .profile
This commit is contained in:
parent
c9216a9ae9
commit
858bf70aac
15
.profile
15
.profile
|
@ -1,4 +1,19 @@
|
||||||
if [ -z $DISPLAY ] && [ $(tty) = /dev/tty1 ]; then
|
if [ -z $DISPLAY ] && [ $(tty) = /dev/tty1 ]; then
|
||||||
|
echo "Select:"
|
||||||
|
echo "0. DWM (default)"
|
||||||
|
echo "1. Onlyfox"
|
||||||
|
echo "2. Pohui, idem v tty"
|
||||||
|
read USER_CHOISE
|
||||||
|
USER_CHOISE=$(($USER_CHOISE + 0))
|
||||||
|
if [[ $USER_CHOISE -eq 1 ]]
|
||||||
|
then
|
||||||
|
startx firefox
|
||||||
|
elif [[ $USER_CHOISE -eq 2 ]]
|
||||||
|
then
|
||||||
|
echo "Nice choise)"
|
||||||
|
else
|
||||||
|
startx
|
||||||
|
fi
|
||||||
startx
|
startx
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue