Posts: 16
DTMaurice
Joined: 14 Jul 2014
#1
I'm setting up old computers for students in a computer lab. I have a Citrix client configured so when the computer turns on the IceWeasel browser will open and connect to the Citrix server prompting login.

This worked perfectly and I was getting ready to deploy. In preparing for a new Energy Policy coming out, management wanted to configure all older computers to shutdown at a certain time at night. I added the qshutdown option and have it configured to shutdown every night at 6pm. My only problem is that I can't get IceWeasel and Qshutdown to both load. This is how I have them configured:

Open AntiX Control Center and select Edit IceWM settings
Select the startup tab - there are two – first line is: #! /bin/bash
Last line add: exec /usr/bin/iceweasel
Added this: exec /usr/bin/qshutdown

Which ever line is first will only run. So I'm guessing only one can be loaded from this tab?
Last edited by DTMaurice on 01 Oct 2014, 18:16, edited 1 time in total.
anticapitalista
Posts: 5,955
Site Admin
Joined: 11 Sep 2007
#2
What if you add & to the end of each line you added?

Try simply:

iceweasel &

qshutdown &
Posts: 16
DTMaurice
Joined: 14 Jul 2014
#3
anticapitalista wrote:What if you add & to the end of each line you added?

Try simply:

iceweasel &

qshutdown &

Wow, that was easy. __{{emoticon}}__
Worked like a champ and have everything running now.

THANKS!!!!!