Page 1 of 1

[REPO] stjerm-terminal-emulator

Posted: 29. Aug 2009, 04:45
by stillborn
Stjerm is a GTK+-based drop-down terminal emulator similar to the consoles used in PC games such as Quake and Half-Life 2. Stjerm sets itself apart from similar programs by providing a minimalistic interface combined with a small file size, lightweight memory usage and easy integration with composite window managers such as Compiz.

http://code.google.com/p/stjerm-terminal-emulator/

http://personal.inet.fi/cool/stillborn/ ... 86-1mm.txz
http://personal.inet.fi/cool/stillborn/ ... 86-1mm.md5
http://personal.inet.fi/cool/stillborn/ ... 86-1mm.dep
http://personal.inet.fi/cool/stillborn/ ... -stjerm.sh
http://personal.inet.fi/cool/stillborn/ ... 86-1mm.log
http://personal.inet.fi/cool/stillborn/ ... 13.tar.bz2

Re: stjerm-terminal-emulator

Posted: 29. Aug 2009, 07:39
by gapan
Don't add tabs if you're doing cat << EOF > file, or the tabs end up in your .desktop file. It's not your fault, it's a problem with slkbuild (which can't be fixed). So the desktop file creation should be like this:

Code: Select all

        cat << EOF > $startdir/pkg/usr/share/applications/$pkgname.desktop
[Desktop Entry]
Name=Stjerm
Comment=Use the command line in a Quake like terminal
Exec=stjerm -o 80 -k F12
Icon=utilities-terminal
Categories=Application;Utility;TerminalEmulator;
Terminal=false
Type=Application
Encoding=UTF-8
EOF
I usually have a separate .desktop file that I put in the source() array and then just copy inside the SLKBUILD.

Re: stjerm-terminal-emulator

Posted: 29. Aug 2009, 09:26
by stillborn
gapan wrote:Don't add tabs if you're doing cat << EOF > file, or the tabs end up in your .desktop file. It's not your fault, it's a problem with slkbuild (which can't be fixed). So the desktop file creation should be like this:

Code: Select all

        cat << EOF > $startdir/pkg/usr/share/applications/$pkgname.desktop
[Desktop Entry]
Name=Stjerm
Comment=Use the command line in a Quake like terminal
Exec=stjerm -o 80 -k F12
Icon=utilities-terminal
Categories=Application;Utility;TerminalEmulator;
Terminal=false
Type=Application
Encoding=UTF-8
EOF
I usually have a separate .desktop file that I put in the source() array and then just copy inside the SLKBUILD.
Tabs removed. :)

Re: [REPO] stjerm-terminal-emulator

Posted: 30. Aug 2009, 11:36
by gapan
Package has entered the repo. ;)