Search found 4794 matches

by GekkoP
Tue Dec 17, 2013 8:06 pm
Forum: HOW-TO (/usr/share/man)
Topic: Gettin The Sweet Sauce 64
Replies: 109
Views: 45058

Re: Gettin The Sweet Sauce 64

Trying out Stumpwm for fun. Following Joe's instructions on how to get it, I ended up with a "Component STUMPWM not found" error. If anyone's interested in this wm, I managed to compile it and run it with this command:

Code: Select all

env CL_SOURCE_REGISTRY=$PWD: sbcl --load make-image.lisp
by GekkoP
Tue Dec 17, 2013 3:17 pm
Forum: INTRODUCTIONS & CHAT (/dev/null)
Topic: show us your iron
Replies: 315
Views: 1290935

Re: show us your iron

^ what did you drop behind your computer case that warrants that towel there? ;) This is not a silly question at all. The answer is: I don't even know what that towel is doing there. I swear! That room is also my father-in-law "office", and he usually makes a mess of every single thing he...
by GekkoP
Tue Dec 17, 2013 11:40 am
Forum: INTRODUCTIONS & CHAT (/dev/null)
Topic: show us your iron
Replies: 315
Views: 1290935

Re: show us your iron

Image
My home media server. HP Pavillion (bought back in 2007), LFS, LinuxBBQ Coal and all the bloat of rtorrent and Universal Media Player.
by GekkoP
Mon Dec 16, 2013 4:52 pm
Forum: UPGRADE WARNINGS (/usr/bin/apt-get)
Topic: suckless-tools [fixed]
Replies: 8
Views: 4792

Re: suckless-tools

No difference on Elektra, just dist-upgraded.
Image
Sylpheed was opened using dmenu, emacs and tabbed+surf via keybinding.
by GekkoP
Mon Dec 16, 2013 2:42 pm
Forum: INTRODUCTIONS & CHAT (/dev/null)
Topic: show us your iron
Replies: 315
Views: 1290935

Re: show us your iron

Beautiful thread. I'm at work, but the only PC missing is my media server, I'll post it later. Here I have the followings: http://s10.postimg.org/ppgh7l951/macbook.jpg http://s29.postimg.org/ywl39ogur/thinkpad.jpg Left: wife's old MacBook (she loves stickers, as you can see), external huge display p...
by GekkoP
Mon Dec 16, 2013 1:39 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

^ precious tips, thanks, I'll see what I can do.
by GekkoP
Mon Dec 16, 2013 11:36 am
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

Added default, fixed a path. All yours. #!/bin/bash # # Script to make CLI printing easy. if [ -z $1 ] ; then echo "no file specified" exit 1 elif [ ! -e $1 ]; then echo 'file "'$1'" does not exist' exit 1 elif [ ! -f $1 ] ; then echo '"'$1'" is not a valid file' exit 1...
by GekkoP
Sun Dec 15, 2013 11:33 am
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

Interesting, I'll try that thanks.
by GekkoP
Sat Dec 14, 2013 9:50 am
Forum: POLLS (/usr/bin/dialog)
Topic: What are you actually running for daily/primary usage?
Replies: 266
Views: 337557

Re: What are you actually running for daily/primary usage?

laptop: LinuxBBQ Elektra (mainly), killX (when I want to learn and rule)
desktop: LinuxBBQ Coal (media server, still haven't had the time to properly move it to a newer BBQ release), LFS (on hold, same little time issue)
by GekkoP
Sat Dec 14, 2013 9:32 am
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

^ nice, very nice.
by GekkoP
Fri Dec 13, 2013 6:39 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

It definitely looks better #!/bin/bash # # Script to make CLI printing easy. if [ -z $1 ] ; then echo "no file specified" exit 1 elif [ ! -e $1 ]; then echo 'file "'$1'" does not exist' exit 1 elif [ ! -f $1 ] ; then echo '"'$1'" is not a valid file' exit 1 fi echo echo...
by GekkoP
Fri Dec 13, 2013 6:29 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

Thank you, I'll try with case/esac and see what I can do. Feel free to do whatever you want with it, it's always a matter of learning something new to me. ;)
by GekkoP
Fri Dec 13, 2013 5:50 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

Now with error checking. #!/bin/bash # # Script to make CLI printing easy. if [ $# -eq 0 ] ; then echo "no argument supplied" exit fi if [ ! -e $1 ]; then echo 'file "'$1'" does not exist' exit fi if [ ! -f $1 ] ; then echo '"'$1'" is not a valid file' exit fi echo echo...
by GekkoP
Fri Dec 13, 2013 3:17 pm
Forum: UPGRADE WARNINGS (/usr/bin/apt-get)
Topic: suckless-tools [fixed]
Replies: 8
Views: 4792

suckless-tools [fixed]

Updated Elektra this morning, and came in a new version of suckless-tools. Only issue I had was with dwm and dmenu. Basically, couldn't open dmenu from dwm anymore using win_key+p shortcut. So, after looking at logs, in dwm/config.h I changed this line static const char *dmenucmd[] = { "dmenu_r...
by GekkoP
Fri Dec 13, 2013 9:40 am
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

Re: printfile

^ I actually hope so. :)
Another thing: that wrapper uses only the options I need when printing, but lp has got many other tweaks.
by GekkoP
Fri Dec 13, 2013 9:31 am
Forum: INTRODUCTIONS & CHAT (/dev/null)
Topic: Random Internet Thread
Replies: 1924
Views: 3019109

Re: Random Internet Thread

^ I went with OpenBSD a while ago, but that "real life" is on me too.
by GekkoP
Fri Dec 13, 2013 9:30 am
Forum: SCREENSHOTS (/usr/bin/scrot)
Topic: Mixed bag
Replies: 1525
Views: 384637

Re: Screenshots

^ beautiful, as usual.
by GekkoP
Thu Dec 12, 2013 9:57 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: printfile
Replies: 17
Views: 4593

printfile

I love printing from command line (thanks to bacon suggestion about lpr). Now, reading The Linux Command Line I found out about lp. It has a lot of options and I'm a lazy bastard, so I wrote this sort of wrapper. Nothing serious, it doesn't check for input errors and I'm pretty sure it could be done...
by GekkoP
Thu Dec 12, 2013 4:06 pm
Forum: UPGRADE WARNINGS (/usr/bin/apt-get)
Topic: cwm github update
Replies: 3
Views: 5292

Re: cwm github update

Thank you, I'll update it as well.
by GekkoP
Wed Dec 11, 2013 5:32 pm
Forum: HOW-TO (/usr/share/man)
Topic: zsh hacking thread!!!
Replies: 42
Views: 22425

Re: zsh hacking thread!!!

Put this in your .zshrc to get DEL key working as you might expect.

Code: Select all

function zle-line-init () { echoti smkx }
function zle-line-finish () { echoti rmkx }
zle -N zle-line-init
zle -N zle-line-finish
Works fine with st.
Actually, not mine. Taken from suckless, but still pretty useful. :)