Skip to content

Commit

Permalink
modified: ts/build/packages/base/etc/thinstation.exports
Browse files Browse the repository at this point in the history
	modified:   ts/build/packages/installer/bin/installer
	modified:   ts/build/packages/xfwm4/build/extra/etc/xfwm4.functions
  • Loading branch information
Doncuppjr committed Oct 30, 2024
1 parent 9635f60 commit d300f4f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 0 additions & 1 deletion ts/build/packages/base/etc/thinstation.exports
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ DEVICE
DISPLAY
FILESYSTEMS
HALTONERROR
HOME
ICONMODE
KEYBOARD_MAP
LANG
Expand Down
4 changes: 3 additions & 1 deletion ts/build/packages/installer/bin/installer
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,8 @@ cred_dialog()
'
set +x
result=`$GTKDIALOG`
for statement in `echo $result`;do
IFS=$'\n'
for statement in $result;do
eval $statement
done
if [ "$EXIT" != "ok" ]; then
Expand All @@ -469,6 +470,7 @@ set +x
x_echo "Error" "All fields are required. Please enter all details."
STATUS="incomplete"
fi
unset IFS
set -x
done
}
Expand Down
7 changes: 7 additions & 0 deletions ts/build/packages/xfwm4/build/extra/etc/xfwm4.functions
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
#exec </dev/null >>/var/log/xfwm4.log 2>&1
#set -x

TSUSER="`id -un`"
if [ "$TSUSER" != "root" ]; then
HOME=/home/$TSUSER
else
HOME=/root
fi

make_desktop()
{
mkdir -p "$ICONDIR"
Expand Down

0 comments on commit d300f4f

Please sign in to comment.