Page 12 of 16

Re: i3

Posted: Tue Feb 17, 2015 8:24 pm
by kexolino
Think I have i3 looking acceptable now. Patched i3bar, so it can now use those little icons.

Image

Image

Floating windows for the lulz with pipes.sh!
Image

The font is Terminus, the colors started out as euphrasia. Thought of naming it kexuphrasia, but that's terrible. Wallpaper.

Re: i3

Posted: Thu Feb 26, 2015 4:15 pm
by slartie
My basic setup on a new install. It doesn't look like much, but I haven't uploaded a scrot for ages, so I thought I had better do something.

Image

emacs, weechat, urxvt, htop, tmux, elinks.

Now onwards to make it look better (and tinker more with dwm as well)

Re: i3

Posted: Thu Feb 26, 2015 6:05 pm
by Dr_Chroot
^ Nice to see a desktop so I visualize what you're working on :) Very nice! 196Mb memory usage? Not bad indeed...

Re: i3

Posted: Thu Feb 26, 2015 6:35 pm
by slartie
The spin is 64bit, so I suspect that adds a bit to the RAM usage, but 200MB is decent. I don't like to be wasteful :) I'll do another scrot when I can be arsed to make it a bit prettier.

Re: i3

Posted: Thu Feb 26, 2015 11:45 pm
by slartie
Image

Mostly the way I want it. Gave up on making i3bar do what I wanted to, so I let conky take over. For the most part it doesn't suck.

Re: i3

Posted: Fri Feb 27, 2015 2:08 am
by dkeg
cool man. Conky as a one liner is good. i3bar is not very good.

Re: i3

Posted: Fri Feb 27, 2015 5:28 am
by stark
About time slartie :D

Re: i3

Posted: Fri Feb 27, 2015 7:58 am
by wuxmedia
^^ i3bar, it's a bit annoying, I don't want it to do much, so I'm happy.
It always confuses the hell out of me which config deals with which bit and how. There's a bit in the main config, a bit in another file, then I have a script which does something more, which is linked somewhere.

need to draw a picture.

Re: i3

Posted: Fri Feb 27, 2015 8:20 am
by kexolino
So you ended up with conky too? It seems to be the sanest approach.

Re: i3

Posted: Fri Feb 27, 2015 8:21 am
by wuxmedia
^ me? No I've got this:

Code: Select all

+--------------+   +----------------+
|              |   |                |
|  .i3/config  +----> ~/bin/bar.sh  |
|              |   |                |
+--------------+   +-------^--------+
                           |         
                           |         
                           |         
+----------------+ +-------+--------+
|                | |                |
|  .i3status.conf| |   ~/bin/bat.sh |
|                | |                |
+----------------+ +----------------+
arrows denote which box called the script. which makes sense to me.
Not sure if helped much :)
Might have a look at conky :)

Re: i3

Posted: Fri Feb 27, 2015 8:55 am
by rhowaldt
ha! been struggling with getting i3bar to look nice. dislike the fact that it answers to global settings about fontsize etc, while i'd like my statusbar fonts to be smaller.
so will probably look into just making a conky oneliner or something again. first got a fuckton of other issues to fix anyway :)

Re: i3

Posted: Fri Feb 27, 2015 9:02 am
by wuxmedia

Code: Select all

bar 
{   
    status_command  ~/bin/bar.sh
    position        bottom
    mode            dock
    workspace_buttons yes

font pango:Deja Vu Sans Mono 8

##################################
## Status Bar Line -  Colours  ###
##################################
  colors {

        statusline              #f9f9f9
        background              #252525
        separator               #292929
  
#  class                              | border  |  background  |   text  |
#-------------------------------------|---------|--------------|---------|
    focused_workspace                   #282828      #282828     #d64937
    active_workspace                    #282828      #282828     #F9F9F9
    inactive_workspace                  #282828      #282828     #A2A2A2
:
Fonts go in there, put what you like :)

Re: i3

Posted: Fri Feb 27, 2015 10:03 am
by kexolino
wuxmedia wrote:^ me?
Sorry, that was meant for Slartie.

This is why I use conky though, you only have to set up that stuff on your pic once, and then you just edit the .conkyrc. Here's the relevant part from mine (i3bar is patched, so I can use the icons):

Code: Select all

TEXT

# JSON for i3bar

#music
 [{	 "full_text" : "${if_running mpd}", "color" : "\#CFCFD9" },
 {"name": "cpu", "icon":"/home/noel/Pictures/dzen-icons/note.xbm","icon_color":"\#93C724", \
 "full_text" : "${exec mpc current}$endif" , "color" : "\#CFCFD9" },

#vol
  {"name": "cpu", "icon":"/home/noel/Pictures/dzen-icons/spkr_01.xbm","icon_color":"\#F04758", \
  "full_text" : "${exec amixer sget Master | grep -e 'Front Left:' | sed 's/[^\[]*\[\([0-9]\{1,3\}%\).*\(on\|off\).*/\2 \1/' | sed 's/off/Muted/' | sed 's/on //'}" , "color" :"\#CFCFD9" },

#bat
  {"name": "cpu", "icon":"/home/noel/Pictures/dzen-icons/bat_full_02.xbm","icon_color":"\#DDB62B", \
  "full_text" : "${battery}" , "color" :"\#CFCFD9" }, 

#cpu
  {"name": "cpu", "icon":"/home/noel/Pictures/dzen-icons/cpu.xbm","icon_color":"\#45A3E6", \
  "full_text" : "${cpu}%" , "color" :"\#CFCFD9" },

#mem
  {"name": "ram", "icon":"/home/noel/Pictures/dzen-icons/mem.xbm","icon_color":"\#C953EF", \
  "full_text" : "${mem}" , "color" :"\#CFCFD9" },

#time
  {"name": "time", "icon":"/home/noel/Pictures/dzen-icons/clock.xbm","icon_color":"\#60C6C8", \
  "color": "\#CFCFD9","full_text": "${time %H:%M}","separator": false}],


Re: i3

Posted: Fri Feb 27, 2015 10:35 am
by slartie
@dkeg - yeah, I messed around with a few things and finally settled for conky. It's Kex I can blame for that :)

@stark - I know. I still have your dwm source to play with as well.

@kexolino - yeah, I was losing my marbles over making i3bar do something useful without too much hassle. Icons are too flashy to me, so I'm sticking with just the text :)

Re: i3

Posted: Fri Feb 27, 2015 12:33 pm
by slartie
Image

Some more horsing around with bits and pieces. Cleaned up the status bar a bit, removed the i3 title bars.

iceweasel, weechat, emacs (smart-mode-line: dark theme, emacs theme: wombat(modified)), tty-clock, htop, mocp, conky, terminus font, urxvt.

Re: i3

Posted: Fri Feb 27, 2015 2:24 pm
by stark
^ Wow look at that! Also powerful hardware!

Re: i3

Posted: Fri Feb 27, 2015 3:15 pm
by slartie
It's a laptop I used for gaming until my much beefier desktop arrived, so it's been granted a new role as a Linux powerhouse.

Working with i3 has never been faster. The Geforce GTX670 makes each tile pop up as if they were shot out with a railgun.

Re: i3

Posted: Fri Feb 27, 2015 3:28 pm
by stark
^ And emacs doesn't need to use swap ;) Compiling must be a ~~~breeze~~~

Re: i3

Posted: Sun Mar 01, 2015 9:50 am
by slartie
Image

I dunno ...

Re: i3

Posted: Sun Mar 01, 2015 2:21 pm
by dkeg
looking real good slartie! The transparency? How is that configured? Two terms have it, two do not.