Code: Select all
#! /bin/sh
sleep 25
echo guake started: $(date) >> guake.log
guake
exit 0It could work
Moderators: b1o, jkerr82508
Code: Select all
#! /bin/sh
sleep 25
echo guake started: $(date) >> guake.log
guake
exit 0viking60 wrote:Recently I had the problem that guake does not autostart even if I had set it in gnome-session-properties.
This only affects guake and it seems to affect at least Arch and Ubuntu.
I have no Idea why this happens since every other entry in gnome-session-properties autostarts on loading as it should.
(it makes an entry in ~/.config/autostart)
So a workaround is called for:
1Code: Select all
cd /usr/bin
2Code: Select all
sudo nano startguake.sh
3 enter this content:Code: Select all
#! /bin/sh
sleep 15
echo guake started: $(date) >> guake.log
guake
exit 0
Save and exit.
start gnome-session-properties
and edit the guake entry in the command prompt like this:Code: Select all
sh startguake.sh
Now guake will be auto-loaded.
Code: Select all
su -
password
chmod a+x /usr/bin/startguake.shviking60 wrote:Try to make it sleep longer like 25 seconds instead of 15 - Gnome shell can be slow to get things up and running:Code: Select all
#! /bin/sh
sleep 25
echo guake started: $(date) >> guake.log
guake
exit 0
It could work