How do I tell a start up program to start minimized?

55,418

Solution 1

You can use a tool called devilspie Install devilspie.

This tool can take actions as soon as programs are started, like sending to workspaces, pinning, and also minimizing. A tutorial is here.

  • To install it from the command-line run:

sudo apt-get install devilspie.

  • To configure it to minimize Teamviewer everytime it is executed:

    mkdir ~/.devilspie
    

Create a file called ~/.devilspie/teamviewer.ds and paste the following lines:

(if  
(is (application_name) "Teamviewer")  
(begin (minimize) )  
)  

If you'd like a gui for easier configuration you should take note of gdevilspie Install gdevilspie

(if GDevilspie not starting try patched one).

Solution 2

I stumbled across this post with the very same issue of TeamViewer not starting minimized when set up for automatic launch during Ubuntu system startup.
The method described by @MJB on Jan 27 at 16:02 worked perfectly for me (I'm running Ubuntu 10.10 32bit, all updates installed up to this date, with teamviewer_linux_x32_v6.0.9224.deb).
I do not experience the glitches described by @misterben on Feb 14 at 18:50.
I installed GDevilspie via Ubuntu Software Center, ran it, created a new rule and set up GDevilspie to show the following code in the "Raw" tab:

( if 
( begin 
( is ( application_name ) "Teamviewer" )
( is ( window_name ) "TeamViewer" )
) 
( begin 
( minimize )
( println "match" )
)
)

The devilspie daemon is set to start up automatically during system start and teamviewer is set to start automatically via System --> Preferences --> Startup Applications (click Add, command: teamviewer).

It would be great if the developers of TeamViewer would integrate a start minimized switch for linux though...

Thanks MJB! :)

Solution 3

Minimizing a program depends on the program if it supports that or not. It also depends if the program has an option in the gui or via command line. For example vlc has an option in preferences that gives the chance to start it minimized. But it also has an option in command line to start it minimized (like parameters). The option to minimize also changes depending of the program. Some programs might be program -min other might be program -systray, etc.. Verify that Teamviewer for example has an option for this in the gui options. If the program has a command line minimize parameter just add it to the start up manager.

Solution 4

I'm also minimizing Teamviewer to the tray on startup, but I'm using KDocker.

sudo apt-get install kdocker

My startup script is one line:

kdocker -n Teamviewer -i /opt/teamviewer/teamviewer/7/desktop/teamviewer.png -d 40 /usr/bin/teamviewer7 &
  • -n is the name of the window
  • -i is the icon file
  • -d is a 40 second limit, after which kdocker will give up if it can't find a matching window
Share:
55,418

Related videos on Youtube

semi-newbie
Author by

semi-newbie

Updated on September 17, 2022

Comments

  • semi-newbie
    semi-newbie over 1 year

    Here is a quesion that has been bugging me. You know how you can set up a program to run on start up right? Well, how can i tell it to start minimized, like you would do in windows?

    TeamViewer starts open, but I need it minimized, and Tray-it just doesn't seem as elegant of a way to do it.

  • misterben
    misterben about 13 years
    This works, but when I restore the minimised window it draws incorrectly - the background of the TeamViewer window becomes a copy of whatever is underneath it and some text is not visible, e.g. i.imgur.com/0p6yR.png (I've obscured text in the three text boxes). Other wine apps don't do this (Notepad++, Picasa).
  • Jacob Vlijm
    Jacob Vlijm over 8 years
    Unless you make it "smartly" wait for the window, success will depend on the time between the appearance of the window and the command to minimize. As said, better make it smartly wait for the window, else it won't work when your system is occupied (and thus slower). Also, there is a risk of name clashes, since you don't use the window id, but (part of) the name as an identifier. see askubuntu.com/a/663288/72216
  • Sergey
    Sergey over 7 years
    I agree with you. I've even posted my version of the script there. I still use this one for the teamviewer though.
  • David Tod
    David Tod about 4 years
    Worked for me whee alltray didn't – seems able to "dock" any app, great! Despite of its name, it's not a KDE app :) Note however the syntax has changed, according to the man page -d has a different purpose now (disable session management), -n is no longer listed even (your syntax however is still shown with kdocker -h, but -d definitely wasn't matching that in my experience). Just start without any parameters, and it lets you pick the window.