From: <dom...@us...> - 2020-12-13 11:34:33
|
Revision: 1054 http://sourceforge.net/p/fvwm-crystal/code/1054 Author: dominique_libre Date: 2020-12-13 11:34:31 +0000 (Sun, 13 Dec 2020) Log Message: ----------- Startup: use StartFunction with Test (Init) instead of InitFunction; add alsamixer launcher. Modified Paths: -------------- ChangeLog fvwm/preferences/Startup Modified: ChangeLog =================================================================== --- ChangeLog 2020-12-07 09:02:16 UTC (rev 1053) +++ ChangeLog 2020-12-13 11:34:31 UTC (rev 1054) @@ -1,5 +1,9 @@ ChangeLog for FVWM-Crystal +dimanche 13 décembre 2020 + fvwm/preferences/Startup: use StartFunction with Test (Init) instead of + InitFunction; add alsamixer launcher. + lundi 7 décembre 2020 INSTALL: add fvwm3 dependency. fvwm/components/apps/FvwmMiniConsole: add support for FvwmPrompt Modified: fvwm/preferences/Startup =================================================================== --- fvwm/preferences/Startup 2020-12-07 09:02:16 UTC (rev 1053) +++ fvwm/preferences/Startup 2020-12-13 11:34:31 UTC (rev 1054) @@ -1,47 +1,53 @@ # In this file you can start up applications at the beginning of the session. -AddToFunc InitFunction +AddToFunc StartFunction # Launch GKrellM, only if it doesn't run -#+ I Test (x gkrellm) Exec pidof gkrellm || exec gkrellm +#+ I Test (Init) Test (x gkrellm) Exec pidof gkrellm || exec gkrellm #Launch torsmo #+ I Test (x torsmo) Exec pidof torsmo || exec torsmo #Launch conky -#+ I Test (x conky) Exec pidof conky || exec conky +#+ I Test (Init) Test (x conky) Exec pidof conky || exec conky # A calendar on the desktop -#+ I Test (x gdeskcal) X gdeskcal +#+ I Test (Init) Test (x gdeskcal) X gdeskcal # Launch Skype -#+ I Test (x skype) Exec pidof skype || exec skype +#+ I Test (Init) Test (x skype) Exec pidof skype || exec skype # Launch Psi -#+ I Test (x psi) Exec pidof psi || exec psi +#+ I Test (Init) Test (x psi) Exec pidof psi || exec psi # Launch TleenX2 -#+ I Test (x tleenx2) Exec pidof tleenx2 || exec tleenx2 +#+ I Test (Init) Test (x tleenx2) Exec pidof tleenx2 || exec tleenx2 # Launch Kadu -#+ I Test (x kadu) Exec pidof kadu || exec kadu +#+ I Test (Init) Test (x kadu) Exec pidof kadu || exec kadu # Launch QJackCtl -#+ I Test (x qjackctl) Exec pidof qjackctl || exec qjackctl +#+ I Test (Init) Test (x qjackctl) Exec pidof qjackctl || exec qjackctl # Launch LADITray -#+ I Test (x ladi-system-tray) Exec pidof ladi-system-tray || exec ladi-system-tray 2>/dev/null +#+ I Test (Init) Test (x ladi-system-tray) Exec pidof ladi-system-tray || exec ladi-system-tray 2>/dev/null # Launch jamin -#+ I Test (x jamin) Exec pidof jamin || exec jamin +#+ I Test (Init) Test (x jamin) Exec pidof jamin || exec jamin # Launch jackdbus -#+ I Test (x jackdbus) PipeRead "pidof jackdbus || (echo A start_jack && echo Music-QJackGUI)" +#+ I Test (Init) Test (x jackdbus) PipeRead "pidof jackdbus || (echo A start_jack && echo Music-QJackGUI)" # Lauch Cadence -#+ I Test (x cadence) PipeRead "pidof cadence || echo A start_cadence +#+ I Test (Init) Test (x cadence) PipeRead "pidof cadence || echo A start_cadence" +# Launch alsamixer +#+ I Test (Init) Test (x alsamixer) PipeRead 'pidof alsamixer || echo "AT \\\"ALSA Mixer\\\" \\\"alsamixer -c $[infostore.SoundCard]\\\"" + # Launch HexChat -#+ I Test (x hexchat) Exec pidof hexchat || exec hexchat +#+ I Test (Init) Test (x hexchat) Exec pidof hexchat || exec hexchat +# Launch Zim +#+ I Test (Init) Test (x zim) Exec pidof zim || exec zim + # vim:ft=fvwm This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |