12

I'm trying to make a custom launcher in 11.10 for the special force quit launcher we had in 11.04 (you could add it from the list of apps, but now it is nowhere to be found, even in alacarte). So I try using info from here but I have no idea what the actual file or command is for force quit nor where it is in the file system.

This question is real specific to force quit itself and is not about asking how to create a launcher.

I will create a file called forcequit.desktop and put it in ~/.local/share/applications folder and will then drag it unto the toolbar like it is told elsewhere.

The content of the file will look like this:

#!/usr/bin/env xdg-open  
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=sh -c 'notify-send "Click on an application to force-close it, or press Esc to cancel."; xkill'
Name=Force Quit
Comment=Click on the app to quit with your pointer
Icon=gnome-panel-force-quit
Categories=System,Accessories;

I suppose it might be a special command that takes an argument, again if you have the info please do tell :)

I wrote comments in the file about the info I need.

Edit: ok now it works with showing a special X icon and does force quit properly. Now I just need to find out how to get instructions to appear for an end user, just like it does when using from CLI. I'd suppose it displays the launcher's comment on screen somewhere? Any ideas or links ? Or maybe I need to add something to this launcher file ?

Last edit: well the solution from the above edit has been found, it is the usage of notify send that does the trick. Like it is now reflected in the code. Enjoy the solution for your desktop (or for end users you support !)

Latest edit: all this talk makes me want to go look for notify-send options a little more... and well in a greater scale at all the other commands I can use.....notify-send is part of gnome, is it ? Or is it part of sh? (I doubt it's from sh)

Edit to the lastest edit : never mind that. I found an answer to that as well. notify-send is part of the libnotify library package... and notify-send is in the tools folder (I had trouble finding it at first…) and no it isn't specifically part of gnome, but rather another library used by many apps :)

5 Answers5

11

The command, as WarriorIng64 already said, is xkill.

To show some instructions for the end user, maybe use

notify-send "Click on an application to force-close it, or right-click to cancel."

Now to combine two commands into one launcher, you'll have to wrap them in sh -c '...', so your .desktop file should say

Exec=sh -c 'notify-send "Click on an application to force-close it, or right-click to cancel."; xkill'
7

Instead of writing your own you can try this:

Flashfreeze

Go here and check it out; http://www.omgubuntu.co.uk/2011/10/freezeunfreeze-unity-app-killer/

or http://www.omgubuntu.co.uk/2011/10/force-quit-applet-unity-launcher/

lqlarry
  • 746
6

I don't know if there is an icon for force quit, but the relevant command is xkill.

2

If you absolutely need the notification, then you can achieve this with notify-send.

Create the following file, perhaps as forceclose:

#!/bin/sh 
notify-send 'Force close application' 'Select a window to close it.  All data in that window will be lost.  Right click to cancel.' --icon=gtk-cancel
xkill

Then mark it as a script with chmod +x forceclose

Then either :

  • Move it to your /bin directory with sudo mv forceclose /bin/forceclose and change your launcher to call forceclose instead of xkill. (useful for multiple users of the same system, perhaps).

    Or

  • Change your launcher to point to whichever directory contains your forceclose script. Note that other users of that system obviously won't be able to use your script.

Pablo Bianchi
  • 17,371
Scaine
  • 11,229
1
  1. Press Alt+F2.
  2. Type xkill. then press Enter.
  3. Click on the window you want to kill (right click to abort).
Alexan
  • 19