Skip to content

Commit

Permalink
Code & Features Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nathaneltitane committed Jan 7, 2025
1 parent 5801e96 commit d8c5c68
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dextop
Original file line number Diff line number Diff line change
Expand Up @@ -199,11 +199,10 @@ then
option="setup"
fi

if [ ! -f "${HOME}"/.dextop/dextop-environment ]
if [ "${option}" = "setup" ] || \
[ "${option}" = "environment" ]
then

if [ "${option}" = "environment" ] || \
[ "${option}" = "setup" ]
if [ ! -f "${HOME}"/.dextop/dextop-environment ]
then
if [ -z "${environment}" ]
then
Expand All @@ -218,9 +217,10 @@ then
if [ "${environment}" = [xX][fF][cC][eE] ]
then
environment="xfce"
fi

if [ "${environment}" = [iI][3] ] || \
[ "${environment}" = [xX][fF][cC][eE] ]
[ "${environment}" = [xX][fF][cC][eE] ]
then
environment="console"
fi
Expand Down

0 comments on commit d8c5c68

Please sign in to comment.