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 2479 by niro, Mon Jun 27 15:20:33 2011 UTC revision 5013 by niro, Wed Aug 7 12:29:09 2013 UTC
# Line 78  generate_ica_session_file() Line 78  generate_ica_session_file()
78   addconfig "DesiredColor=${ses_colors}"   addconfig "DesiredColor=${ses_colors}"
79   addconfig 'TransportDriver=TCP/IP'   addconfig 'TransportDriver=TCP/IP'
80   addconfig 'WinStationDriver=ICA 3.0'   addconfig 'WinStationDriver=ICA 3.0'
81   addconfig "ClearPassword=${ses__password}"   addconfig "ClearPassword=${ses_password}"
82   addconfig "Username=${ses_username}"   addconfig "Username=${ses_username}"
83   addconfig "Domain=${ses_domain}"   addconfig "Domain=${ses_domain}"
84   addconfig 'UseFullScreen=Yes'   addconfig 'UseFullScreen=Yes'
# Line 162  generate_icon() Line 162  generate_icon()
162   [[ -z ${dest} ]] && dest="${ALX_UNPRIV_HOME}/.idesktop/${name}.lnk"   [[ -z ${dest} ]] && dest="${ALX_UNPRIV_HOME}/.idesktop/${name}.lnk"
163    
164   # use some defaults for icon, dest, {x,y}res   # use some defaults for icon, dest, {x,y}res
165   [[ -z ${xres} ]] && xres=30   [[ -z ${xres} ]] && xres=50
166   [[ -z ${yres} ]] && xres=30   [[ -z ${yres} ]] && xres=50
167   if [[ -z ${icon} ]] || [ ! -f ${icon} ]   if [[ -z ${icon} ]] || [ ! -f ${icon} ]
168   then   then
169   # if no default icon is given use default.png   # if no default icon is given use default.png
# 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 231  generate_all_desktop_icons() Line 232  generate_all_desktop_icons()
232   install -d ${dest}   install -d ${dest}
233    
234   # default settings   # default settings
235   declare -i x=30   declare -i x=50
236   declare -i y=30   declare -i y=50
237    
238   # ica icons   # ica icons
239   for i in ${session_list}   for i in ${session_list}
# Line 246  generate_all_desktop_icons() Line 247  generate_all_desktop_icons()
247   # new line if x > xres   # new line if x > xres
248   if [ ${x} -ge ${xres} ]   if [ ${x} -ge ${xres} ]
249   then   then
250   x=30   x=50
251   y=$((${y} + 80))   y=$((${y} + 80))
252   fi   fi
253    
# Line 254  generate_all_desktop_icons() Line 255  generate_all_desktop_icons()
255   if [ ${y} -ge ${yres} ]   if [ ${y} -ge ${yres} ]
256   then   then
257   x=$((${x} + 120))   x=$((${x} + 120))
258   y=30   y=50
259    
260   # re-check x   # re-check x
261   [ ${x} -ge ${xres} ] && x=30   [ ${x} -ge ${xres} ] && x=50
262   fi   fi
263    
264   generate_icon \   generate_icon \
265   --name "${cfg_sessions_session}" \   --name "${cfg_sessions_session}" \
266   --command "nice -n 19 wfica ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_sessions_filename})" \   --command "wfica-launcher ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_sessions_filename})" \
267   --icon "${ALX_SESSIONS_ICONS}/$(fix_whitespaces ${cfg_sessions_session}).png" \   --icon "${ALX_SESSIONS_ICONS}/$(fix_whitespaces ${cfg_sessions_session}).png" \
268   --dest "${dest}/$(fix_whitespaces ${cfg_sessions_session}).lnk" \   --dest "${dest}/$(fix_whitespaces ${cfg_sessions_session}).lnk" \
269   --xres "${x}" \   --xres "${x}" \
# Line 282  generate_all_desktop_icons() Line 283  generate_all_desktop_icons()
283   # new line if x > xres   # new line if x > xres
284   if [ ${x} -ge ${xres} ]   if [ ${x} -ge ${xres} ]
285   then   then
286   x=30   x=50
287   y=$((${y} + 80))   y=$((${y} + 80))
288   fi   fi
289    
# Line 290  generate_all_desktop_icons() Line 291  generate_all_desktop_icons()
291   if [ ${y} -ge ${yres} ]   if [ ${y} -ge ${yres} ]
292   then   then
293   x=$((${x} + 120))   x=$((${x} + 120))
294   y=30   y=50
295    
296   # re-check x   # re-check x
297   [ ${x} -ge ${xres} ] && x=30   [ ${x} -ge ${xres} ] && x=50
298   fi   fi
299    
300   generate_icon \   generate_icon \
# 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 314  generate_all_desktop_icons() Line 366  generate_all_desktop_icons()
366   # new line if x > xres   # new line if x > xres
367   if [ ${x} -ge ${xres} ]   if [ ${x} -ge ${xres} ]
368   then   then
369   x=30   x=50
370   y=$((${y} + 80))   y=$((${y} + 80))
371   fi   fi
372    
# Line 322  generate_all_desktop_icons() Line 374  generate_all_desktop_icons()
374   if [ ${y} -ge ${yres} ]   if [ ${y} -ge ${yres} ]
375   then   then
376   x=$((${x} + 120))   x=$((${x} + 120))
377   y=30   y=50
378    
379   # re-check x   # re-check x
380   [ ${x} -ge ${xres} ] && x=30   [ ${x} -ge ${xres} ] && x=50
381   fi   fi
382    
383   case ${i} in   case ${i} in
# Line 339  generate_all_desktop_icons() Line 391  generate_all_desktop_icons()
391   --icon "${ALX_SESSIONS_ICONS}/${i}.png" \   --icon "${ALX_SESSIONS_ICONS}/${i}.png" \
392   --dest "${dest}/${i}.lnk" \   --dest "${dest}/${i}.lnk" \
393   --xres "${x}" \   --xres "${x}" \
394   --yres "${y}"   --yres "${y}" \
395     --icon-width "40" \
396     --icon-height "40"
397    
398   y=$((${y} + 80))   y=$((${y} + 80))
399   done   done
# Line 382  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 439  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     # unset all variables
514     unset PLUGIN_AUTOSTART
515     unset PLUGIN_MENUITEM_NAME
516     fi
517     done
518    
519   # add autostart session   # add autostart session
520   if [[ ! -z ${cfg_autostart_session} ]]   if [[ ! -z ${cfg_autostart_session} ]]
521   then   then
522   # sleep one second to wait until busybox is fully initialized and the screen is really centered   # sleep one second to wait until busybox is fully initialized and the screen is really centered
523   addconfig "[startup] {sleep 1 && nohup nice -n 19 wfica ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_autostart_session}) &}"   addconfig "[startup] {sleep 1 && wfica-launcher ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_autostart_session}) &}"
524   fi   fi
525    
526   # fluxbox hotkeys   # fluxbox hotkeys
# Line 481  config_sessions() Line 558  config_sessions()
558   --colordepth "${cfg_graphic_depth}"   --colordepth "${cfg_graphic_depth}"
559    
560   # fluxbox menusession   # fluxbox menusession
561   addconfig "[exec] (${cfg_sessions_session}) {nice -n 19 wfica ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_sessions_filename})}"   addconfig "[exec] (${cfg_sessions_session}) {wfica-launcher ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_sessions_filename})}"
562   done   done
563    
564   # delete all progs   # delete all progs
  progsh_path="${ALX_UNPRIV_HOME}/.alxprogs"  
565   [ -d ${progsh_path} ] && rm -rf ${progsh_path}   [ -d ${progsh_path} ] && rm -rf ${progsh_path}
566   install -d ${progsh_path}   install -d ${progsh_path}
567    
# Line 516  config_sessions() Line 592  config_sessions()
592   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}"
593   done   done
594    
595     # add plugins
596     for i in ${all_plugin_ids}
597     do
598     evaluate_table cfg_plugins "where serial='${ALX_SERIAL}' and id='${i}'"
599     if [[ -x ${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh ]]
600     then
601     eval $(${ALX_PLUGINS}/${cfg_plugins_plugin}/plugin.sh menuitem)
602    
603     # abort if name or exec is empty
604     [[ -z ${PLUGIN_MENUITEM_NAME} ]] && continue
605     [[ -z ${PLUGIN_MENUITEM_EXEC} ]] && continue
606    
607     # now echo config line for fluxbox-menu
608     # make it "configureable" :p
609     if [[ -n ${PLUGIN_MENUITEM_WORKDIR} ]]
610     then
611     workdir="--workdir ${PLUGIN_MENUITEM_WORKDIR}"
612     fi
613     if [[ -n ${PLUGIN_MENUITEM_ICON} ]]
614     then
615     PLUGIN_MENUITEM_ICON="<${PLUGIN_MENUITEM_ICON}>"
616     fi
617    
618     # gen prog startup wrapper
619     generate_program_sh \
620     --name "${PLUGIN_MENUITEM_NAME}" \
621     --exec "${PLUGIN_MENUITEM_EXEC}" \
622     --param "${PLUGIN_MENUITEM_PARAM}" \
623     --dest "${progsh_path}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME})" \
624     "${workdir}"
625    
626     addconfig "[exec] (${PLUGIN_MENUITEM_NAME}) {${progsh_path}/$(fix_whitespaces ${PLUGIN_MENUITEM_NAME})} ${PLUGIN_MENUITEM_ICON}"
627     fi
628    
629     # unset all variables
630     unset PLUGIN_MENUITEM_NAME
631     unset PLUGIN_MENUITEM_EXEC
632     unset PLUGIN_MENUITEM_PARAM
633     unset PLUGIN_MENUITEM_WORKDIR
634     unset PLUGIN_MENUITEM_ICON
635     done
636    
637   # fluxbox menu footer   # fluxbox menu footer
638   cat ${ALX_SKELETONS}/fluxbox/menu.footer >> ${ALX_UNPRIV_HOME}/.fluxbox/menu   cat ${ALX_SKELETONS}/fluxbox/menu.footer >> ${ALX_UNPRIV_HOME}/.fluxbox/menu
639   # add a newline (maybe there is no crlf in the footer)   # add a newline (maybe there is no crlf in the footer)
640   addconfig   addconfig
641    
642   # now it's a good time to generate *all* icons :)   # now it's a good time to generate *all* icons :)
643   generate_all_desktop_icons "${all_ses_ids}" "${all_other_ids}"   generate_all_desktop_icons "${all_ses_ids}" "${all_other_ids}" "${all_plugin_ids}"
644    
645   # fix permissions   # fix permissions
646   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}
647   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}/.fluxbox
648   chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox   chmod 0755 ${ALX_UNPRIV_HOME}/.fluxbox
649   chmod 0755 ${ALX_UNPRIV_HOME}/.idesktop   chmod 0755 ${ALX_UNPRIV_HOME}/.idesktop
  chmod 0644 ${ALX_UNPRIV_HOME}/.ideskrc  
650  }  }

Legend:
Removed from v.2479  
changed lines
  Added in v.5013