Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/src/modules/idesk/idesk-generate-all-desktop-icons.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2366 by niro, Tue Aug 25 10:28:00 2015 UTC revision 2368 by niro, Wed Aug 26 10:47:17 2015 UTC
# Line 34  yres="$(( ${yres} - 80 ))" Line 34  yres="$(( ${yres} - 80 ))"
34  [ -f ${rc} ] && rm -f ${rc}  [ -f ${rc} ] && rm -f ${rc}
35  install -d ${dest}  install -d ${dest}
36    
37    # clean default reboot,shutdown icon info
38    for i in shutdown reboot
39    do
40     if [ -f ${MROOT}/${MCORE_CONFIG_PATH}/icons/info/${i}.${ICON_INFO_SUFFIX} ]
41     then
42     rm ${MROOT}/${MCORE_CONFIG_PATH}/icons/info/${i}.${ICON_INFO_SUFFIX}
43     fi
44    done
45    
46  # default settings  # default settings
47  declare -i x=50  declare -i x=50
48  declare -i y=50  declare -i y=50
# Line 41  declare -i y=50 Line 50  declare -i y=50
50  for icon_resource in $(find ${MROOT}/${MCORE_CONFIG_PATH}/icons/info -type f)  for icon_resource in $(find ${MROOT}/${MCORE_CONFIG_PATH}/icons/info -type f)
51  do  do
52   # abort if empty   # abort if empty
53   [[ -z ${i} ]] && continue   [[ -z ${icon_resource} ]] && continue
54    
55   # new line if x > xres   # new line if x > xres
56   if [ ${x} -ge ${xres} ]   if [ ${x} -ge ${xres} ]

Legend:
Removed from v.2366  
changed lines
  Added in v.2368