You are not logged in.
Pages: 1
just a little script to run the geany ide [ http://geany.sf.net ]
...
i created it to avoid the geany lock issues,
...
...
if u shutdown without closing geany [f.e]
#!/bin/bash
if [ `ps -A | grep geany | wc -l` == "0" ]; then
rm -f $HOME/.geany/geany_fifo*
fi
exec geany $@ > /dev/null &
The.Revolution.Is.Coming - - To fight, To hunger, To Resist!
Offline
Pages: 1