Page 1 of 3

bspwm

Posted: Thu Feb 06, 2014 6:20 pm
by machinebacon
For example, the Oink Oink with dkeg's colorstar Xresource:

Re: bspwm

Posted: Sat Feb 15, 2014 7:47 pm
by kexolino
Switched to bspwm a few days ago and this is what I did with it... Really liking it so far.

Image Image Image

The third image is just to show a bog standard Vimperator, I just hid the scroll bar and the tab bar. The tab bar shows when I put the mouse to the top, so that when I decide to sit like the dude on the bottom pic and can't reach the keyboard, it's still reasonably comfortable to browse with the mouse.
Not showing an actual "productive" shot, because that just includes a bunch of PDFs and my notes. :)
Edit: almost forgot, the color scheme is by the Rooster.

Re: bspwm

Posted: Sat Mar 01, 2014 10:18 am
by franksinistra
my bspwm on bbq spring
replaced the conky with status script made in C (can't figure out just yet how to properly display the alsa volume :))

Re: bspwm

Posted: Sat Mar 01, 2014 4:02 pm
by bones
Nice! And JSBX - Acme, great album. :D

Re: bspwm

Posted: Sat Mar 01, 2014 6:15 pm
by franksinistra
^ indeed! that is my favorite album out of their discography

Re: bspwm

Posted: Mon Mar 17, 2014 8:16 pm
by kexolino
Doing the first C++ homework. Simple stuff, yes, gotta start somewhere.
Image

I refuse to use Visual C++ 6. Damnit...

Re: bspwm

Posted: Mon Mar 17, 2014 11:28 pm
by ivanovnegro
Nice dark looks and nice soundtrack for your theme. ;)

Re: bspwm

Posted: Fri Jun 13, 2014 4:25 pm
by bones
And here is bspwm. I admit that I had some troubles navigating with this one, hence the spartan scrot. I'll get to know it better, later:

Re: bspwm

Posted: Sat Jun 14, 2014 10:25 pm
by ivanovnegro
^ Nice colors.

Re: bspwm

Posted: Mon Jun 16, 2014 10:02 am
by franksinistra
vedic-inspired bspwm
2014-06-16-155451_1680x1050_scrot.png

Re: bspwm

Posted: Mon Jun 16, 2014 10:53 am
by dkeg
nice. interesting font in bar. term colors are real easy to read.

Re: bspwm

Posted: Mon Jun 16, 2014 12:47 pm
by franksinistra
^ thanks a lot dkeg!
bars using siddhanta font , while the term font is Hermit font

Re: bspwm

Posted: Mon Jun 16, 2014 12:51 pm
by rhowaldt
^^^ interesting OS-name :D

Re: bspwm

Posted: Mon Jun 16, 2014 5:01 pm
by simgin
Awesome scrot Frank :o) Super slick!

Re: bspwm

Posted: Tue Oct 28, 2014 7:37 pm
by franksinistra
2014-10-29-012024_1920x1080_scrot.png
top bar is lemonboy's bar
top bar font : uushi (since bar can't take xft font)

apps :
emacs (gtk) -- i'll post the emacs colorscheme if anyone request it
htop
colorscript --- ripped from z3bra's repo
xresources ---- trim_yer_pubic_hair (i'll post it to the Xresources section later)

Re: bspwm

Posted: Tue Oct 28, 2014 8:07 pm
by dkeg
Looking good as usual!

Re: bspwm

Posted: Tue Oct 28, 2014 8:22 pm
by franksinistra
^ thanks a lot D!

Re: bspwm

Posted: Wed Oct 29, 2014 6:47 am
by kexolino
Very nice colors. Care to share your bar config? Not really planning to use it, just interested in what it looks like.

Re: bspwm

Posted: Wed Oct 29, 2014 8:36 am
by franksinistra
thanks zazen and kex!
bar configs:

Code: Select all

. panel_colors

num_mon=$(bspc query -M | wc -l)

while read -r line ; do
  case $line in
  S*)
  sys_infos="%{F$COLOR_STATUS_FG}%{B$COLOR_STATUS_BG} ${line#?} %{B-}%{F-}"
  ;;
  W*)
# bspwm internal state
  wm_infos=""
  IFS=':'
  set -- ${line#?}
  while [ $# -gt 0 ] ; do
    item=$1
    name=${item#?}
    case $item in
    M*)
# active monitor
    if [ $num_mon -gt 1 ] ; then
      wm_infos="$wm_infos %{F$COLOR_ACTIVE_MONITOR_FG}%{B$COLOR_ACTIVE_MONITOR_BG} ${name} %{B-}%{F-} "
      fi
      ;;
      m*)
# inactive monitor
      if [ $num_mon -gt 1 ] ; then
        wm_infos="$wm_infos %{F$COLOR_INACTIVE_MONITOR_FG}%{B$COLOR_INACTIVE_MONITOR_BG} ${name} %{B-}%{F-} "
        fi
        ;;
        O*)
# focused occupied desktop
        wm_infos="${wm_infos}%{F$COLOR_FOCUSED_OCCUPIED_FG}%{B$COLOR_FOCUSED_OCCUPIED_BG}%{U$COLOR_FOREGROUND}%{+u} ${name} %{-u}%{B-}%{F-}"
        ;;
        F*)
# focused free desktop
        wm_infos="${wm_infos}%{F$COLOR_FOCUSED_FREE_FG}%{B$COLOR_FOCUSED_FREE_BG}%{U$COLOR_FOREGROUND}%{+u} ${name} %{-u}%{B-}%{F-}"
        ;;
        U*)
# focused urgent desktop
        wm_infos="${wm_infos}%{F$COLOR_FOCUSED_URGENT_FG}%{B$COLOR_FOCUSED_URGENT_BG}%{U$COLOR_FOREGROUND}%{+u} ${name} %{-u}%{B-}%{F-}"
        ;;
        o*)
# occupied desktop
        wm_infos="${wm_infos}%{F$COLOR_OCCUPIED_FG}%{B$COLOR_OCCUPIED_BG} ${name} %{B-}%{F-}"
        ;;
        f*)
# free desktop
        wm_infos="${wm_infos}%{F$COLOR_FREE_FG}%{B$COLOR_FREE_BG} ${name} %{B-}%{F-}"
        ;;
        u*)
# urgent desktop
        wm_infos="${wm_infos}%{F$COLOR_URGENT_FG}%{B$COLOR_URGENT_BG} ${name} %{B-}%{F-}"
        ;;
        L*)
# layout
        wm_infos="$wm_infos %{F$COLOR_LAYOUT_FG}%{B$COLOR_LAYOUT_BG} ${name} %{B-}%{F-}"
        ;;
      esac
      shift
    done
    ;;
  esac
  printf "%s\n" "%{l}${wm_infos}%{c}${sys_infos}"
done

Re: bspwm

Posted: Wed Oct 29, 2014 9:02 am
by GekkoP
Looks good, frank, and I see Clojure there, so super good. ;)