Launchers Not Launching


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Launchers Not Launching
# 1  
Old 09-15-2013
Error [Solved] Launchers Not Launching

Some of my .desktop launchers aren't working. When I try to execute it from the main menu nothing happens. When I try to launch it from a terminal I get the following:
Code:
$ /usr/share/applications/qjoypad.desktop
/usr/share/applications/qjoypad.desktop: line 1: [Desktop: command not found
/usr/share/applications/qjoypad.desktop: line 8: Utility: command not found

Here are the contents of the launcher:
Code:
[Desktop Entry]
Version=1.0
Name=QJoyPad
Exec=/usr/games/qjoypad
Icon=/usr/share/pixmaps/qjoypad/gamepad2-24x24.png
Terminal=false
Type=Application
Categories=Game;Utility;

File permissions:
Code:
$ ls -l /usr/share/applications | grep -i qjoy
-rwxr-xr-x 1 root root   173 Mar 10  2010 qjoypad.desktop

I have not edited the file since I installed the package. It was working 2 days ago. Not sure what caused the change. Most of my other launchers work fine.

I am on Linux Mint 15 64-bit:
Code:
$ uname -r
3.8.0-19-generic

--- Edit ---

Actually, it doesn't look like any of my launchers can be executed from a terminal. How can I figure out why it's not launching from the system menu?

--- Edit ---

I can launch it from the file manager (Nemo). (forgot to mention I'm using Cinnamon desktop)

--- Solved ---

Right-clicked on main menu button and selected "Edit menu". Then I hit "Restore System Configuration". Now it's working.

Last edited by Don Cragun; 09-15-2013 at 07:57 AM.. Reason: Marking as solved.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

[Solved] Crontab not launching script

Hi all, i have the following script #!/bin/sh for i in `ps -leaf --cols 1024 | grep LogUser | grep -v grep | awk '{print $4}'`; do echo $i kill -15 $i; done; but it seems that the crontab its sciping this script,i configured corntab as following */30 * * * root... (2 Replies)
Discussion started by: charli1
2 Replies

2. Red Hat

Help in launching firefox.

Hi, -- I am new to linux, please bear with my tech terms. I am using Red Hat 4.1.2-48 (Linux version 2.6.18-194.11.1.el5) for the project. This is a remote server and I do not use any GUI. Now I need to install a product that requires me to launch firefox from linux. when i am trying... (3 Replies)
Discussion started by: vj8436
3 Replies

3. AIX

Error launching c++ executable

Hi everybody, I have compiled my code based on the ALPS libraries () and CMake build system with IBM compiler xlC 11.1 on AIX 6.1 at the latest patch level running on an IBM SP Power 6 machine for high-performance computing. When I run the executable I receive this error message: -bash-3.2$... (2 Replies)
Discussion started by: JessicaAlfonsi
2 Replies

4. Shell Programming and Scripting

Launching shell from another

hi, I have shell script ( say A.sh) that launches another shell script ( say B.sh) on the server. In shell script A.sh, if i call B.sh as . B.sh <-- it doesnt work, err file not found . ./B.sh <-- it doesnt work, err file not found ./B.sh <-- works why so? BTW the file exists at the... (4 Replies)
Discussion started by: sjc
4 Replies

5. UNIX for Advanced & Expert Users

Launching a process in remote machine

Hi all, Normally to launch a process in the remote machine I will use ssh to the machine and launch the process.I want to launch the remote machine process with out login into the machine . Is there any way. It may be any workaround method. Thanks in advance .:) (3 Replies)
Discussion started by: karthigayan
3 Replies

6. Shell Programming and Scripting

Launching shell scripts from different dirs

Hi, General question, if I have a shell script whcih I launch from anywhere on the system vis the PATH env var, how can I get the script to echo where I launch this from? i.e. /my/home/script/myscript BUT I launch this from /my/otherarea/somewherelse via the env variable. I would... (1 Reply)
Discussion started by: cyberfrog
1 Replies

7. Shell Programming and Scripting

Record PID when launching

I would like to record the PID of a process when i lauch it from my script something like: #/bin/bash $abc_pid = /apps/abc/abc.bin -port6700 I know I can run the ps command and grep for abc.bin. The idea is that becase the process runs on several ports and the argument list of .bin is... (2 Replies)
Discussion started by: yankee428
2 Replies

8. UNIX for Dummies Questions & Answers

launching script via REXEC

Hi folks! my client uses an winapplication which is launching shell-scripts remotely on a HP-Unix Machine via Rexec. The application-configuration is launching the script (which is in the home directory of connecting user) like: rexec host user pass shell.sh So far so good, everything... (3 Replies)
Discussion started by: JohnMurdoch
3 Replies

9. Shell Programming and Scripting

Launching Several Shells....

Hi, I need to create a shell that launches several shells named for example svspush (that does nothing but wait) and record their pid in a file. Any inputs please. Thanks, Marconi (1 Reply)
Discussion started by: marconi
1 Replies

10. Shell Programming and Scripting

Launching a new bash shell

I'm new to programming on unix and have a really simple question (google hasn't been my friend today). I have a bash shell running on a remote machine. I'm looking at it from a windows PC using Exceed. Is there a command I can use from the shell which will launch another bash shell? Thanks! (3 Replies)
Discussion started by: gsd
3 Replies
Login or Register to Ask a Question