You are not logged in.

#26 2009-12-01 17:36:24

arialis111
Member
Registered: 2006-12-12
Posts: 63

Re: December 2009 Screenshots - Take 3

screenshotau.th.png

Xfce 4.6

Offline

#27 2009-12-01 18:01:02

Ranguvar
Member
Registered: 2008-08-12
Posts: 2,563

Re: December 2009 Screenshots - Take 3

falconindy wrote:

Codeblock, your setup is gorgeous! Any chance I could take a peek at your Irssi config?

Switched to DWM over the weekend... my WIP:

Clean
http://omploader.org/tMnc0dQ

Dirty
http://omploader.org/tMnc0dg

Mind sharing that incredible wallpaper, in the best resolution you have, and where you got it?
Thanks big_smile

Offline

#28 2009-12-01 18:46:50

alexandrite
Member
Registered: 2009-03-27
Posts: 326

Re: December 2009 Screenshots - Take 3

falconindy wrote:

Codeblock, your setup is gorgeous! Any chance I could take a peek at your Irssi config?

Switched to DWM over the weekend... my WIP:

Clean
http://omploader.org/tMnc0dQ

Dirty
http://omploader.org/tMnc0dg

Looks like it's going along well enough.  Any chance you'd share that wallpaper of yours?
And um... What are Destruction, Gluttony, and Entropy?

Last edited by alexandrite (2009-12-01 21:56:54)

Offline

#29 2009-12-01 19:17:44

3nd3r
Member
From: /dev/null
Registered: 2002-12-08
Posts: 301
Website

Re: December 2009 Screenshots - Take 3

fsckd wrote:

its a custom setup, ill post the config

firstly, you need inxi

http://techpatterns.com/forums/about1133.html

secondly, I made an alias

alias info=" perl /home/ender/scripts/info2.pl;inxi -v5 - if multicore detected, create new frequency line, per cpu"

and thirdly, I have the perl script

#!/usr/bin/perl
use Switch;
use strict;
use File::Basename;

####################
## Config options ##
####################

## What distro logo to use to use, Available "Archlinux Debian Ubuntu None" ##
my $distro = "Archlinux";
my $myArchVersion = "ArchLinux (2009.08)";

## what values to display. Use "OS Kernel DE WM win_theme Theme Font Icons" ##
my $display = "OS Kernel DE WM Win_theme Theme Icons Font Background";

## Takes a screen shot if set to 0 ##
my $shot = 1;
## Command to run to take screen shot ##
#my $command = "scrot -d 10";

## What colors to use for the variables. ##
my $textcolor = "\e[0m";

## Prints little debugging messages if set to 0 ##
my $quite = 1;



########################
## Script starts here ##
########################
## Define some thing to work with strict ##
my @line = ();
my $found = 0;
my $DE = "NONE";
my $WM = "Beryl";

## Hash of WMs and the process they run ##
my %WMlist = ("Beryl", "beryl",
              "Fluxbox", "fluxbox",
              "Openbox", "openbox",
              "Blackbox", "blackbox",
              "Xfwm4", "xfwm4",
              "Metacity", "metacity",
              "Kwin", "kwin",
              "FVWM", "fvwm",
              "Enlightenment", "enlightenment",
              "IceWM", "icewm",
              "Window Maker", "wmaker",
              "PekWM","pekwm" );

## Hash of DEs and the process they run ##     
my %DElist = ("Gnome", "gnome-session",
              "Xfce4", "xfce-mcs-manage",
              "KDE", "ksmserver");

## Get Kernel version ##
if ( $display =~ "Kernel"){
  print "\::$textcolor Finding Kernel version\n" unless $quite == 1;
  my $kernel = `uname -r`;
  $kernel =~ s/\s+/ /g;
  $kernel = " Kernel:$textcolor $kernel";
  push(@line, "$kernel");
}

## Find running processes ##
print "\::$textcolor Getting processes \n" unless $quite == 1;
my $processes = `ps -A | awk {'print \$4'}`;

## Find DE ##
while( (my $DEname, my $DEprocess) = each(%DElist) ) {
  print "\::$textcolor Testing $DEname process: $DEprocess \n" unless $quite == 1;
  if ( $processes =~ m/$DEprocess/ ) {
    $DE = $DEname;
    print "\::$textcolor DE found as $DE\n" unless $quite == 1;
    if( $display =~ m/DE/ ) {
      push(@line, " DE:$textcolor $DE");
    }
    last;
  }
}

## Find WM ##
while( (my $WMname, my $WMprocess) = each(%WMlist) ) {
 print "\::$textcolor Testing $WMname process: $WMprocess \n" unless $quite == 1;
  if ( $processes =~ m/$WMprocess/ ) {
    $WM = $WMname;
    print "\::$textcolor WM found as $WM\n" unless $quite == 1;
    if( $display =~ m/WM/ ) {
      push(@line, " WM:$textcolor $WM");
    }
    last;
  }
}

## Find WM theme ##
if ( $display =~ m/Win_theme/ ){
  switch($WM) {
    case "Openbox" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.config/openbox/rc.xml")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
        if( /<name>(.+)<\/name>/ ) {
          while ( $found == 0 ) {
            print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
            push(@line, " WM Theme:$textcolor $1");
            $found = 1;
          }
        }
      }
      close(FILE);
    }
    case "Metacity" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      my $gconf = `gconftool-2 -g /apps/metacity/general/theme`;
      print "\::$textcolor $WM theme found as $gconf\n" unless $quite == 1;
      chomp ($gconf);
      push(@line, " WM Theme:$textcolor $gconf");
    }
    case "Fluxbox" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.fluxbox/init")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
        if( /session.styleFile:.*\/(.+)/ ) {
          print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
          push(@line, " WM Theme:$textcolor $1");
        }
      }
      close(FILE);
    }
    case "Blackbox" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.blackboxrc")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
        if( /session.styleFile:.*\/(.+)/ ) {
          print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
          push(@line, " WM Theme:$textcolor $1");
        }
      }
      close(FILE);
    }
    case "Xfwm4" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.config/xfce4/mcs_settings/xfwm4.xml")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
        if( /<option name="Xfwm\/ThemeName" type="string" value="(.+)"\/>/ ) {
          print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
          push(@line, " WM Theme:$textcolor $1");
        }
  } 
      close(FILE);
    }
    case "Kwin" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.kde/share/config/kwinrc")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
        if( /PluginLib=kwin3_(.+)/ ) {
          print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
          push(@line, " WM Theme:$textcolor $1");
        }
      }
      close(FILE);
    }
    case "Enlightenment" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      my $remote = `enlightenment_remote -theme-get theme` ;
      if( $remote =~ m/.*FILE="(.+).edj"/ ) {
        print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
        push(@line, " WM Theme:$textcolor $1");
      }     
    }       
    case "IceWM" { 
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.icewm/theme")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
        if( /Theme="(.+)\/.*.theme/ ) {
          while( $found == 0 ) {
            print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
            push(@line, " WM Theme:$textcolor $1");
            $found = 1;
          }
        }
      }   
      close(FILE);
    }   
    case "PekWM" {
      print "\::$textcolor Finding $WM theme\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.pekwm/config")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
        if( /Theme.*\/(.*)"/ ) {
            print "\::$textcolor $WM theme found as $1\n" unless $quite == 1;
            push(@line, " WM Theme:$textcolor $1");
        }
      }
      close(FILE); 
    } 
  }   
}     
      
## Find Theme Icon and Font ##
if ( $display =~ m/[Theme, Icons, Font, Background]/) {
  switch($DE) {
    case "Gnome" {
      print "\::$textcolor Finding $DE variables\n" unless $quite == 1;
      if ( $display =~ m/Theme/ ) {
        my $gconf = `gconftool-2 -g /desktop/gnome/interface/gtk_theme`;
        chomp ($gconf);
        print "\::$textcolor GTK Theme found as $1\n" unless $quite == 1;
        push(@line, " GTK Theme:$textcolor $gconf");
      }
      if ( $display =~ m/Icons/ ) {
        my $gconf = `gconftool-2 -g /desktop/gnome/interface/icon_theme`;
        chomp ($gconf);
        push(@line, " Icons:$textcolor $gconf");
      } 
      if ( $display =~ m/Font/ ) {
        my $gconf = `gconftool-2 -g /desktop/gnome/interface/font_name`;
        chomp ($gconf);
        push(@line, " Font:$textcolor $gconf");
      }
      if ( $display =~ m/Background/ ) {
        my $gconf = `gconftool-2 -g /desktop/gnome/background/picture_filename`;
        chomp ($gconf);
        my $bname = basename($gconf);
        push(@line, " Background:$textcolor $bname");
      }

    } 
    case "Xfce4" {
      my @sort = ();
      print "\::$textcolor Finding $DE variables\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.config/xfce4/mcs_settings/gtk.xml")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) {
     if ( $display =~ m/Theme/ ) {
          if (/<option name="Net\/ThemeName" type="string" value="(.+)"\/>/ ) {
            print "\::$textcolor GTK Theme found as $1\n" unless $quite == 1;
            unshift(@sort, " GTK Theme:$textcolor $1");
          } 
        }
        if ( $display =~ m/Icons/ ) {
          if (/<option name="Net\/IconThemeName" type="string" value="(.+)"\/>/ ) {
            print "\::$textcolor Icons found as $1\n" unless $quite == 1;
            unshift(@sort, " Icons:$textcolor $1");
          }
        }
        if ( $display =~ m/Font/ ) {
          if ( /<option name="Gtk\/FontName" type="string" value="(.+)"\/>/ ) {
            print "\::$textcolor Font found as $1\n" unless $quite == 1;
            unshift(@sort, " Font:$textcolor $1");
          } 
        }
      }
      close(FILE);
      ## Sort variables so they're ordered "Theme Icon Font" ##
      foreach my $i (@sort) {
        push(@line, "$i");
      }
    } 
    case "KDE" { 
      print "\::$textcolor Finding $DE variables\n" unless $quite == 1;
      open(FILE, "$ENV{HOME}/.kde/share/config/kdeglobals")
      || die "\e[0;31m<Failed>\n";
      while( <FILE> ) { 
        if ( $display =~ m/Theme/ ) {
          if ( /widgetStyle=(.+)/  ) {
            print "\::$textcolor Wiget Style found as $1\n" unless $quite == 1;
            push(@line, " Wiget Style:$textcolor $1");
          }
          if (/colorScheme=(.+).kcsrc/ ) {
            print "\::$textcolor Color Scheme found as $1\n" unless $quite == 1;
            push(@line, " Color Scheme:$textcolor $1");
          }
        }
        if ( $display =~ m/Icons/ ) {
          if ( /Theme=(.+)/ ) {
            print "\::$textcolor Icons found as $1\n" unless $quite == 1;
            push(@line, " Icons:$textcolor $1");
          } 
        }   
        if ( $display =~ m/Font/ ) {
          if ( /font=(.+)/ ) {
            my $font = (split/,/, $1)[0];
            print "\::$textcolor Font found as $font\n" unless $quite == 1;
            push(@line, " Font:$textcolor $font");
          }
        }
      }
      close(FILE);
  
    }
    else {
      my @files = ("$ENV{HOME}/.gtkrc-2.0", "$ENV{HOME}/.gtkrc.mine",);
      foreach my $file (@files) {
        if ( -e $file ) {
          print "\::$textcolor Opening $file\n" unless $quite == 1; 
          open(FILE, $file)
          || die "\e[0;31m<Failed>\n";
          while( <FILE> ) {
            if ( $display =~ m/Theme/ ) {
              if( /include ".*themes\/(.+)\/gtk-(1|2)\.0\/gtkrc"/ ){
                print "\::$textcolor GTK theme found as $1\n" unless $quite == 1;
                push(@line, " GTK Theme:$textcolor $1");
              }
            }
            if ( $display =~ m/Icons/ ) {
              if( /.*gtk-icon-theme-name.*"(.+)"/ ) {
                print "\::$textcolor Icons found as $1\n" unless $quite == 1;
                push(@line, " Icons:$textcolor $1");
              }
            }
            if ( $display =~ m/Font/ ) {
              if( /.*gtk-font-name.*"(.+)"/ ) {
                print "\::$textcolor Font found as $1\n" unless $quite == 1;
                push(@line, " Font:$textcolor $1");
             }
            }
          }
          close(FILE);
        }
      }
    }
  }
}

## Display the system info ##

if ( $distro =~ m/Archlinux/ ) {

## Get Archlinux version ##
if ( $display =~ "OS"){
  print "\::$textcolor Finding Archlinux version\n" unless $quite == 1;
  my $version = $myArchVersion;
  $version =~ s/\s+/ /g;
  $version = " OS:$textcolor $version";
  unshift(@line, "$version");
}

my $c1 = "\e[1;36m";
my $c2 = "\e[0;36m";

system("clear");

print "
${c1}                   -`                   
${c1}                  .o+`                  
${c1}                 `ooo/                  
${c1}                `+oooo:                 
${c1}               `+oooooo:
${c1}               -+oooooo+:
${c1}             `/:-:++oooo+:                       $c1@line[0]
${c1}            `/++++/+++++++:                      $c1@line[1]
${c1}           `/++++++++++++++:                     $c1@line[2]
${c1}          `/+++${c2}ooooooooooooo/`                   $c1@line[3]
${c2}         ./ooosssso++osssssso+`                  $c1@line[4]
${c2}        .oossssso-````/ossssss+`                 $c1@line[5]
${c2}       -osssssso.      :ssssssso.                $c1@line[6]
${c2}      :osssssss/        osssso+++.               $c1@line[7]
${c2}     /ossssssss/        +ssssooo/-               $c1@line[8]
${c2}   `/ossssso+/:-        -:/+osssso+-    
${c2}  `+sso+:-`                 `.-/+oso:   
${c2} `++:.                           `-/+/  
${c2} .`                                  ``
${c2} 
\e[0m";
}

#system("scrot -d 1");

You might want to change the alias around a bit, like point it to where you save your perl script etc..

Last edited by 3nd3r (2009-12-01 20:26:10)

Offline

#30 2009-12-01 19:26:10

toxygen
Member
Registered: 2008-08-22
Posts: 713

Re: December 2009 Screenshots - Take 3

d'oh didnt read previous post. dig the colors

Last edited by toxygen (2009-12-01 19:28:02)


"I know what you're thinking, 'cause right now I'm thinking the same thing. Actually, I've been thinking it ever since I got here:
Why oh why didn't I take the BLUE pill?"

Offline

#31 2009-12-01 19:30:26

YamiFrankc
Member
From: Mexico
Registered: 2009-06-19
Posts: 177
Website

Re: December 2009 Screenshots - Take 3

milomouse, what text browser is that?

I want to also get away from gui apps, just want Swiftfox(with Vimperator). smile


Thanks and greetings.

Offline

#32 2009-12-01 19:36:51

skwid
Member
Registered: 2009-09-20
Posts: 105

Re: December 2009 Screenshots - Take 3

Smoov as silk

Offline

#33 2009-12-01 20:38:33

Lich
Member
Registered: 2009-09-13
Posts: 437

Re: December 2009 Screenshots - Take 3

tMndhNA


Archlinux | ratpoison + evilwm | urxvtc | tmux

Offline

#34 2009-12-01 20:43:47

arialis111
Member
Registered: 2006-12-12
Posts: 63

Re: December 2009 Screenshots - Take 3

@skwid, thanks mate wink

Offline

#35 2009-12-01 20:48:28

weakhead
Member
From: Poland
Registered: 2008-08-21
Posts: 341
Website

Re: December 2009 Screenshots - Take 3

243fac0_th.jpg

OS: Arch Linux
WM: PekWM
Panel: BMPanel2
Skins: Updated version of Lakrits, I will post links when it will be uploaded (probably tomorrow).
Conky: Conky - Mira
I don't remember from where I have this wallpaper from sad

Last edited by weakhead (2009-12-01 20:48:48)

Offline

#36 2009-12-01 21:05:55

hBd
Member
From: Romania - Cluj Napoca
Registered: 2008-06-08
Posts: 241
Website

Re: December 2009 Screenshots - Take 3

weakhead wrote:

http://s6.tinypic.com/243fac0_th.jpg

OS: Arch Linux
WM: PekWM
Panel: BMPanel2
Skins: Updated version of Lakrits, I will post links when it will be uploaded (probably tomorrow).
Conky: Conky - Mira
I don't remember from where I have this wallpaper from sad

rly nice!

Offline

#37 2009-12-01 21:06:20

ilembitov
Member
Registered: 2008-10-07
Posts: 124

Re: December 2009 Screenshots - Take 3

Is that uzbl/surf? Just was wondering if there is any X web browser that behaves like lynx&co

Offline

#38 2009-12-02 00:02:37

milomouse
Member
Registered: 2009-03-24
Posts: 940
Website

Re: December 2009 Screenshots - Take 3

YamiFrankc wrote:

milomouse, what text browser is that?

I want to also get away from gui apps, just want Swiftfox(with Vimperator). smile

It's w3m, I just built it from ABS. I compiled it without image support though, otherwise it comes with image display into your console/terminal using imlib2.

./configure --disable-image

The imaging is kind of neat but I wanted a strictly text  browser hence I disabled it.. NOTE: It appears to load slightly longer than other text browsers like Links, Lynx, Netrik, etc.. but that's because it actually loads the page before displaying it whereas the others usually display it AS it's loading, which may cause unwanted display changes. I personally don't mind the extra few seconds of waiting. It's also very customizable. Just read the MANUAL from their website/from the source tarbell. I can add scripts just like in Uzbl but in .cgi format, having custom actions, commands, etc.

Last edited by milomouse (2009-12-02 00:08:10)

Offline

#39 2009-12-02 00:03:51

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: December 2009 Screenshots - Take 3

To those who requested: here's my wallpaper, clean and original:
tMndibQ

Source is 4chan, of all places. Thanks to another member on the forums, I've been blindly scraping wg (and b, oh god help me) 2-3 times a day and weeding through metric buttloads of, well... you know. I get a few gems out of each pass.

Another by (presumably) the same author, but not nearly as cool:
tMndibw

edit: oops, almost forgot.

What are Destruction, Gluttony, and Entropy?

Names I've given to my hard drives. Back when I used Windows, I had Chaos, Destruction, Entropy and Fallacy, rather than C D E and F. Carried them over to Linux because it was familiar to me in the way I stored my data. Gluttony's my newest drive, and 1TB. Seemed like a fitting name.

Last edited by falconindy (2009-12-02 00:08:00)

Offline

#40 2009-12-02 00:43:20

fsckd
Forum Fellow
Registered: 2009-06-15
Posts: 4,173

Re: December 2009 Screenshots - Take 3

@3nd3r: thanks smile


aur S & M :: forum rules :: Community Ethos
Resources for Women, POC, LGBT*, and allies

Offline

#41 2009-12-02 01:18:40

YamiFrankc
Member
From: Mexico
Registered: 2009-06-19
Posts: 177
Website

Re: December 2009 Screenshots - Take 3

milomouse, oh i see.
thanks smile


Thanks and greetings.

Offline

#42 2009-12-02 01:57:26

kismet010
Member
Registered: 2009-09-02
Posts: 137

Re: December 2009 Screenshots - Take 3

gnu on google images on w3m on dwm 46MB ram
161xct0.png
Full

Offline

#43 2009-12-02 02:36:50

Taters
Member
From: Ohio
Registered: 2008-08-22
Posts: 53

Re: December 2009 Screenshots - Take 3

1259721322.png
1259721317.png

Was playing around with Photoshop and ended up with a wallpaper. Still working on my terminal color scheme.

Offline

#44 2009-12-02 02:53:55

kismet010
Member
Registered: 2009-09-02
Posts: 137

Re: December 2009 Screenshots - Take 3

Taters wrote:

http://www.upload3r.com/serve/011209/1259721322.png
http://www.upload3r.com/serve/011209/1259721317.png

Was playing around with Photoshop and ended up with a wallpaper. Still working on my terminal color scheme.

good!

Offline

#45 2009-12-02 03:40:54

llcawthorne
Member
From: Columbia, SC
Registered: 2009-10-16
Posts: 142

Re: December 2009 Screenshots - Take 3

Hmm.  I've never used Imageshack before or posted a screenshot, but here's my try at it.

mainmonitor.th.png
threescreen.th.png

XMonad, xmobar, three screens (cropped it to just the main screen in one).  Not really running anything interesting...  Thunderbird, HuluDesktop, Firefox, couple of urxvtc's...  GHCI, vim.

I would post a clean picture, but I don't really have anything setup as my background at the moment.  I used to have all sorts of odd backgrounds I used before I switched to xinerama, but since I seldom see the desktop these days, I haven't bothered combining several together to make a pleasing backdrop.  I keep meaning to use bacteria to set something up, but it doesn't matter since I see my background for about 2 secs during loading X-windows, and otherwise have various combinations of full-screen using apps tiled aboot.


To understand recursion, you must understand recursion.

Offline

#46 2009-12-02 05:52:01

methuselah
Member
Registered: 2007-10-02
Posts: 570

Re: December 2009 Screenshots - Take 3

Screenshot-northcoast-1.png

Screenshot-northcoast2-1.png

Screenshot-northcoast3-1.png

Offline

#47 2009-12-02 06:02:06

ent
Member
Registered: 2008-12-15
Posts: 53

Re: December 2009 Screenshots - Take 3

milomouse wrote:

trying to weed out gtk stuff and uzbl is the only app i have that needs gtk. hmm kind of annoying. maybe an fltk port.. *cough cough* nah.. hopefully just xlib.

that's odd, I've been thinking about this all day...

on topic, here's a dwm shot I took a day or two ago

http://omploader.org/vMnZxZA

Offline

#48 2009-12-02 07:40:35

bosha
Member
From: Russia, Togliatti
Registered: 2008-10-21
Posts: 31
Website

Re: December 2009 Screenshots - Take 3

Just switched to wmii

8245a5.png


If you think of MS-DOS as mono, and Windows as stereo,
then Linux is Dolby Digital and all the music is free...

Offline

#49 2009-12-02 07:45:06

Murray_B
Member
From: Germany
Registered: 2008-07-29
Posts: 134

Re: December 2009 Screenshots - Take 3

Very nice! Could you tell something about your configuration?
The line at the top of your screen is the menu of the programs, isn't it?
How did you manage that in xfce? Which window-theme are you using
and which iconset at the bottom (the black and white one)?

Thomas

Offline

#50 2009-12-02 08:52:18

mikesd
Member
From: Australia
Registered: 2008-02-01
Posts: 788
Website

Re: December 2009 Screenshots - Take 3

Still using XMonad and struggling with Haskell. smile I am improving though.

2009-12-02-193114_3360x1050_scrot_thumb.png

Not much new wm wise.
* Another status bar on the bottom of the left screen showing installed package versions.
* New wallpapers.

Applications: htop, vifm, tig, pydf and vim with vim-outliner.

Finally have my configs online, well a couple to start with anyway.

Offline

Board footer

Powered by FluxBB