You are not logged in.
Pages: 1
I would keep any eye on Conky when it starts to run slow. What is your RAM / CPU usage when it runs like crap? If it appears to be normal / adequate, then I would say it could be a graphics issue.
On my old PC I ran into this with Ubuntu, and it was directly tied to hardware.
Had some issues with this today, but I got it figured out.
The #! installer script installs openjdk, meaning you have java 1.6SE installed by default (as well as the JRE for 1.6). However, 1.7 is the most recent version, with 1.8SE coming out in March.
So I wanted to update to 1.7. Here is how I did it.
Open terminal and perform the following:
sudo apt-get purge openjdk*Then:
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get upgrade Note: If you have amd64 this will throw some errors. Just ignore them.
Next:
sudo apt-get install oracle-java7-installerAccept the agreement and:
sudo apt-get install oracle-java7-set-defaultKeep in mind if you are using eclipse you will have to change your default compiler to 1.7.
That worked! Thanks!
SOLUTION:
<keybind key="A-e">
<action name="Execute">
<startupnotify>
<enabled>true</enabled>
<name>Run Program</name>
</startupnotify>
<command>~/eclipse/eclipse</command>
</action>
</keybind>He means the full path to what you're trying to execute.
ie: If I had an app/script-whatever located in ~/myusername/.Misccrap/name-of-I-want-to-execute
That would be the full path to it and what I'd use in openbox config files to launch it.
I know, but I'm unclear of where that is being defined. The reason the clipse alias works is because the full path is defined within it (i.e. ~/eclipse), then the application is executed with ./eclipse.
So I'm trying to figure out why running the clipse alias in terminal works, but does not execute properly when run through a shortcut defined in rc.xml. Do I have to define the full path within rc.xml so that openbox understands where to go to execute ./eclipse? If so, do I define that in the command tags?
But isn't that what I did when I defined the alias?
The clipse command changes to the home dir, then to the eclipse dir, then runs ./eclipse.
Are you saying I have to do the following?
<keybind key="A-e">
<action name="Execute">
<startupnotify>
<enabled>true</enabled>
<name>Run Program</name>
</startupnotify>
<command>cd ~/eclipse && ./eclipse</command>
</action>
</keybind>I'm pretty sure that would error out when I run openbox --reconfigure. Not really sure what you mean when you say include the full path.
Hey guys,
Just going to get right to it. I have some executables that I use all the time, but I don't want to open terminal, go to the directory, and then execute the application (specifically eclipse).
So here is what I did.
Modified ~/.bashrc as follows:
# eclipse path shortcut
PATH="$PATH:~/eclipse/"
alias clipse="cd ~/eclipse && ./eclipse"Now when I open terminal and type clipse, eclipse opens.
I then took this over into rc.xml as follows:
<keybind key="A-e">
<action name="Execute">
<startupnotify>
<enabled>true</enabled>
<name>Run Program</name>
</startupnotify>
<command>clipse</command>
</action>
</keybind>But when I hit alt + e, I get a message prompt that says "failed to execute child process "clipse" (No such file or directory)". Any ideas how to remedy this?
SOLUTION:
<keybind key="A-e">
<action name="Execute">
<startupnotify>
<enabled>true</enabled>
<name>Run Program</name>
</startupnotify>
<command>~/eclipse/eclipse</command>
</action>
</keybind>Pages: 1
Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.