Magellan Linux

Diff of /alx-src/branches/alxconf-060/functions/config_sessions.sh

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

revision 2611 by niro, Wed Jul 6 21:34:49 2011 UTC revision 3503 by niro, Thu Apr 19 12:17:20 2012 UTC
# Line 195  generate_all_desktop_icons() Line 195  generate_all_desktop_icons()
195  {  {
196   local session_list="$1"   local session_list="$1"
197   local other_menuitem_list="$2"   local other_menuitem_list="$2"
198     local plugin_list="$3"
199   local res   local res
200   local xres   local xres
201   local yres   local yres
# Line 307  generate_all_desktop_icons() Line 308  generate_all_desktop_icons()
308    
309   y=$((${y} + 80))   y=$((${y} + 80))
310   done   done
311    
312     for i in ${plugin_list}
313     do
314     # abort if empty
315     [[ -z ${i} ]] && continue
316    
317     evaluate_table cfg_plugins "where serial='${ALX_SERIAL}' and id='${i}'"
318     if [[ -x ${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh ]]
319     then
320     eval $(${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh menuitem)
321    
322     # abort if name or exec is empty
323     [[ -z ${PLUGIN_MENUITEM_NAME} ]] && continue
324     [[ -z ${PLUGIN_MENUITEM_EXEC} ]] && continue
325    
326     # new line if x > xres
327     if [ ${x} -ge ${xres} ]
328     then
329     x=50
330     y=$((${y} + 80))
331     fi
332    
333     # new row if y > yres
334     if [ ${y} -ge ${yres} ]
335     then
336     x=$((${x} + 120))
337     y=50
338    
339     # re-check x
340     [ ${x} -ge ${xres} ] && x=50
341     fi
342    
343     generate_icon \
344     --name "${PLUGIN_MENUITEM_NAME}" \
345     --command "${progsh_path}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME})" \
346     --icon "${ALX_SESSIONS_ICONS}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME}).png" \
347     --dest "${dest}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME}).lnk" \
348     --xres "${x}" \
349     --yres "${y}" \
350     --default-icon "default_item.png"
351    
352     y=$((${y} + 80))
353     fi
354    
355     # unset all variables
356     unset PLUGIN_MENUITEM_NAME
357     unset PLUGIN_MENUITEM_EXEC
358     unset PLUGIN_MENUITEM_PARAM
359     unset PLUGIN_MENUITEM_WORKDIR
360     unset PLUGIN_MENUITEM_ICON
361     done
362    
363   # add shutdown, reboot icons   # add shutdown, reboot icons
364   for i in shutdown reboot   for i in shutdown reboot
# Line 384  config_sessions() Line 436  config_sessions()
436   local screensaver_passwd_cmd   local screensaver_passwd_cmd
437   local fbinit   local fbinit
438   local fbkeys   local fbkeys
439     local progsh_path
440    
441     progsh_path="${ALX_UNPRIV_HOME}/.alxprogs"
442    
443   # get all session ids from database   # get all session ids from database
444   all_ses_ids=$(mysqldo "select id from cfg_sessions where serial='${ALX_SERIAL}'")   all_ses_ids=$(mysqldo "select id from cfg_sessions where serial='${ALX_SERIAL}'")
445   # get all other_menutiem ids from database   # get all other_menuitem ids from database
446   all_other_ids=$(mysqldo "select id from cfg_other_menuitems where serial='${ALX_SERIAL}'")   all_other_ids=$(mysqldo "select id from cfg_other_menuitems where serial='${ALX_SERIAL}'")
447     # get all plugin ids from database
448     all_plugin_ids=$(mysqldo "select id from cfg_plugins where serial='${ALX_SERIAL}'")
449    
450   # get screensaver settings   # get screensaver settings
451   evaluate_table cfg_screensaver   evaluate_table cfg_screensaver
# Line 441  config_sessions() Line 498  config_sessions()
498   addconfig "[startup] {nohup xautolock -time ${cfg_screensaver_timeout} -locker 'xlock -mode ${cfg_screensaver_screensaver} ${screensaver_passwd_cmd}' > /dev/null &}"   addconfig "[startup] {nohup xautolock -time ${cfg_screensaver_timeout} -locker 'xlock -mode ${cfg_screensaver_screensaver} ${screensaver_passwd_cmd}' > /dev/null &}"
499   fi   fi
500    
501     # add plugins autostart
502     for i in ${all_plugin_ids}
503     do
504     evaluate_table cfg_plugins "where serial='${ALX_SERIAL}' and id='${i}'"
505     if [[ -x ${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh ]]
506     then
507     eval $(${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh autostart)
508    
509     if [[ ${PLUGIN_AUTOSTART} = 1 ]]
510     then
511     addconfig "[startup] {${progsh_path}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME}) &}"
512     fi
513     fi
514     done
515    
516   # add autostart session   # add autostart session
517   if [[ ! -z ${cfg_autostart_session} ]]   if [[ ! -z ${cfg_autostart_session} ]]
518   then   then
# Line 487  config_sessions() Line 559  config_sessions()
559   done   done
560    
561   # delete all progs   # delete all progs
  progsh_path="${ALX_UNPRIV_HOME}/.alxprogs"  
562   [ -d ${progsh_path} ] && rm -rf ${progsh_path}   [ -d ${progsh_path} ] && rm -rf ${progsh_path}
563   install -d ${progsh_path}   install -d ${progsh_path}
564    
# Line 518  config_sessions() Line 589  config_sessions()
589   addconfig "[exec] (${cfg_other_menuitems_name}) {${progsh_path}/$(fix_whitespaces ${cfg_other_menuitems_name})} ${cfg_other_menuitems_icon}"   addconfig "[exec] (${cfg_other_menuitems_name}) {${progsh_path}/$(fix_whitespaces ${cfg_other_menuitems_name})} ${cfg_other_menuitems_icon}"
590   done   done
591    
592     # add plugins
593     for i in ${all_plugin_ids}
594     do
595     evaluate_table cfg_plugins "where serial='${ALX_SERIAL}' and id='${i}'"
596     if [[ -x ${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh ]]
597     then
598     eval $(${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh menuitem)
599    
600     # abort if name or exec is empty
601     [[ -z ${PLUGIN_MENUITEM_NAME} ]] && continue
602     [[ -z ${PLUGIN_MENUITEM_EXEC} ]] && continue
603    
604     # now echo config line for fluxbox-menu
605     # make it "configureable" :p
606     if [[ -n ${PLUGIN_MENUITEM_WORKDIR} ]]
607     then
608     workdir="--workdir ${PLUGIN_MENUITEM_WORKDIR}"
609     fi
610     if [[ -n ${PLUGIN_MENUITEM_ICON} ]]
611     then
612     PLUGIN_MENUITEM_ICON="<${PLUGIN_MENUITEM_ICON}>"
613     fi
614    
615     # gen prog startup wrapper
616     generate_program_sh \
617     --name "${PLUGIN_MENUITEM_NAME}" \
618     --exec "${PLUGIN_MENUITEM_EXEC}" \
619     --param "${PLUGIN_MENUITEM_PARAM}" \
620     --dest "${progsh_path}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME})" \
621     "${workdir}"
622    
623     addconfig "[exec] (${PLUGIN_MENUITEM_NAME}) {${progsh_path}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME})} ${PLUGIN_MENUITEM_ICON}"
624     fi
625    
626     # unset all variables
627     unset PLUGIN_MENUITEM_NAME
628     unset PLUGIN_MENUITEM_EXEC
629     unset PLUGIN_MENUITEM_PARAM
630     unset PLUGIN_MENUITEM_WORKDIR
631     unset PLUGIN_MENUITEM_ICON
632     done
633    
634   # fluxbox menu footer   # fluxbox menu footer
635   cat ${ALX_SKELETONS}/fluxbox/menu.footer >> ${ALX_UNPRIV_HOME}/.fluxbox/menu   cat ${ALX_SKELETONS}/fluxbox/menu.footer >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
636   # add a newline (maybe there is no crlf in the footer)   # add a newline (maybe there is no crlf in the footer)
637   addconfig   addconfig
638    
639   # now it's a good time to generate *all* icons :)   # now it's a good time to generate *all* icons :)
640   generate_all_desktop_icons "${all_ses_ids}" "${all_other_ids}"   generate_all_desktop_icons "${all_ses_ids}" "${all_other_ids}" "${all_plugin_ids}"
641    
642   # fix permissions   # fix permissions
643   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}
644   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox
645   chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox   chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox
646   chmod 0755 ${ALX_UNPRIV_HOME}/.idesktop   chmod 0755 ${ALX_UNPRIV_HOME}/.idesktop
  chmod 0644 ${ALX_UNPRIV_HOME}/.ideskrc  
647  }  }

Legend:
Removed from v.2611  
changed lines
  Added in v.3503