Search found 510 matches

by stark
Sun May 10, 2015 5:11 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: [locked]colr
Replies: 17
Views: 6580

Re: colr

^ Awesome ! I Need to learn awk properly. Oh and it's not querying all the colors at all according to `bash -x colr bg`. If I make them variables then it queries all the colors no matter the argument which is why I have kept them as functions. I learned this today. I just wanted to keep the case sta...
by stark
Sun May 10, 2015 4:27 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: [locked]colr
Replies: 17
Views: 6580

Re: colr

An ugly, faster version: #!/bin/sh bg() { xrdb -query | grep "background" | cut -d '#' -f2;} fg() { xrdb -query | grep "foreground" | cut -d '#' -f2;} blkf() { xrdb -query | grep "^\*color0:" | cut -d '#' -f2; } redf() { xrdb -query | grep "^\*color1:" | cut -...
by stark
Sun May 10, 2015 12:54 pm
Forum: INTRODUCTIONS & CHAT (/dev/null)
Topic: Quote of the day
Replies: 120
Views: 33207

Re: Quote of the day

First off, I'd suggest printing out a copy of the GNU coding standards,
and NOT read it. Burn them, it's a great symbolic gesture. - Linux kernel coding style
by stark
Fri May 08, 2015 8:04 pm
Forum: CONFIGS & XRESOURCES (/home/bbq/.config)
Topic: dzen
Replies: 42
Views: 22828

Re: dzen

Yup, two notable changes are the binary name and the `-f` flag handling.
by stark
Fri May 08, 2015 7:54 pm
Forum: SCROTS BY USER (/usr/local/bin/scrot)
Topic: dkeg
Replies: 460
Views: 164512

Re: dkeg

Classy as fuck !
by stark
Fri May 08, 2015 7:50 pm
Forum: CONFIGS & XRESOURCES (/home/bbq/.config)
Topic: dzen
Replies: 42
Views: 22828

Re: dzen

You can use lemonbar with hlwm here are few example ( change `bar` to `lemonbar` and remove the non-hlwm specific stuff assuming you don't use mpd ):

http://unek.blinkenshell.org/dotfiles/panel
http://dotshare.it/dots/736/1/raw/
by stark
Fri May 08, 2015 7:42 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: Siji - the Systemd of iconic fonts
Replies: 25
Views: 9322

Re: Siji - the Systemd of iconic fonts

Updated Lemonbar Example.

Remember now you need to use the `-f` flag for every font you declare so if you're using say five fonts then:

Code: Select all

lemonbar -p -f font1 -f font2 -f font3 -f font4 -f font5
by stark
Sat May 02, 2015 5:50 pm
Forum: POLLS (/usr/bin/dialog)
Topic: Favourite Console File Manager
Replies: 19
Views: 7598

Re: Favourite Console File Manager

rxvt-unicode, haven't tried aterm or st but good idea Thanks :)
by stark
Sat May 02, 2015 5:29 pm
Forum: POLLS (/usr/bin/dialog)
Topic: Favourite Console File Manager
Replies: 19
Views: 7598

Re: Favourite Console File Manager

^ The IO issue not only exists when browsing through a directory of images but also when generating previews for normal directories or file, though that is one of the reason why I have kept ranger so I didn't turn this feature off and see if the issue still exists.
by stark
Sat May 02, 2015 5:14 pm
Forum: INTRODUCTIONS & CHAT (/dev/null)
Topic: Happy Birthday rust collector !
Replies: 12
Views: 3550

Happy Birthday rust collector !

Go crazy, break some machines and live a long healthy and wealthy prosperous life.
And it's about damn time for you to complete the alsa challenge, might as well do it today :)
by stark
Sat May 02, 2015 5:08 pm
Forum: POLLS (/usr/bin/dialog)
Topic: What's in your shell?
Replies: 12
Views: 6546

Re: What's in your shell?

I use mksh as my login shell ( sometimes interactively ), bash for interactive-use and scripting most of the time, dash when I need to make or check some sh scripts and there is ash from busybox which I haven't messed with that much.
by stark
Sat May 02, 2015 5:03 pm
Forum: POLLS (/usr/bin/dialog)
Topic: Favourite TUI editor
Replies: 19
Views: 7164

Re: Favourite TUI editor

^ Are you crazy ? Wine comes with a notepad.exe :D
by stark
Sat May 02, 2015 5:02 pm
Forum: POLLS (/usr/bin/dialog)
Topic: Favourite Console File Manager
Replies: 19
Views: 7598

Re: Favourite Console File Manager

^ Yeah, I agree also I found it used alot of IO when browsing fast, perhaps because of generating previews ? But I have the python bloat here anyway :)
by stark
Sat May 02, 2015 4:57 pm
Forum: POLLS (/usr/bin/dialog)
Topic: Favourite TUI editor
Replies: 19
Views: 7164

Re: Favourite TUI editor

Ofcourse vim in a emacs ansi-term :D
by stark
Sat May 02, 2015 4:54 pm
Forum: POLLS (/usr/bin/dialog)
Topic: What's your uname?
Replies: 264
Views: 503890

Re: What's your uname?

Code: Select all

Linux ghost 4.0.1-1-ARCH #1 SMP PREEMPT Wed Apr 29 12:15:20 CEST 2015 i686 GNU/Linux
by stark
Sat May 02, 2015 4:50 pm
Forum: POLLS (/usr/bin/dialog)
Topic: Favourite Console File Manager
Replies: 19
Views: 7598

Re: Favourite Console File Manager

I have been using ranger for a while, but these days i'm using vifm more and more, even though I still have ranger around :)
by stark
Sat May 02, 2015 4:42 pm
Forum: POLLS (/usr/bin/dialog)
Topic: How many packages do you have installed?
Replies: 48
Views: 18277

Re: How many packages do you have installed?

Code: Select all

pacman -Q | wc -l
Only install, 686 Packages.
by stark
Sat May 02, 2015 4:33 pm
Forum: SCRIPTS (/usr/local/bin)
Topic: automount - mounts all Linux partitions
Replies: 2
Views: 1987

Re: automount - mounts all Linux partitions

Insanely useful ! Thank You :)