forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
#
# Very simple session manager for Mini X
#
 
# Uncomment below to enable parsing of debian menu entrys
# export MB_USE_DEB_MENUS=1 
 
if [ -e $HOME/.mini_x/session ]
then
exec $HOME/.mini_x/session
fi
 
if [ -e /etc/mini_x/session ]
then
exec /etc/mini_x/session
fi
 
MINI_X_SESSION_DIR=/etc/mini_x/session.d
if [ -d "$MINI_X_SESSION_DIR" ]; then
   # Execute session file on behalf of file owner
   find $MINI_X_SESSION_DIR -type f | while read SESSIONFILE; do
       set +e
       USERNAME=`stat -c %U $SESSIONFILE`
       # Using su rather than sudo as latest 1.8.1 cause failure [YOCTO #1211]
#        su -l -c '$SESSIONFILE&' $USERNAME
       sudo -b -i -u $USERNAME $SESSIONFILE&
       set -e
   done
fi
 
# This resolution is big enough for hob2's max window size.
xrandr -s 1024x768
 
# Default files to run if $HOME/.mini_x/session or /etc/mini_x/session
# dont exist. 
 
matchbox-terminal&
exec matchbox-window-manager