You are not logged in.

#101 2012-12-15 21:38:25

e7k
Member
Registered: 2012-09-13
Posts: 7

Re: December 2012 Screenshots

Normally I do not use conky on Arch...

aaamr.png

Offline

#102 2012-12-16 00:32:32

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: December 2012 Screenshots

Here's what I currently have. Not much visual changes, but I made quite a few in dmenu (applied the xyw patch; set an x and y offset and a fixed width. Also started using two scripts: dmenu-fm ("filemanager") and dmenu-finder (like OSX's Finder)), I hacked away at dunst removing all sorts of features I don't use (most importantly configuring it with dunstrc) and also my statusbar now supports Audacious instead of MPD. In DWM I'm trying to keep both the statusbar and the system tray on my primary monitor when I'm using two monitors, but so far only the statusbar does that; the system tray is being a pain in the ass. I might just drop it altogether; only use it for Skype and Dropbox anyway. I also have to look into monocle-no-borders...

tZ3BtMg

Last edited by Unia (2012-12-16 00:33:56)


If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#103 2012-12-16 08:56:19

Paul-S
Member
From: Wales
Registered: 2008-02-04
Posts: 353

Re: December 2012 Screenshots

Nice Unia, any chance of posting the dmenu-fm and finder scripts?

Cheers
Paul-S

Offline

#104 2012-12-16 13:01:28

Unia
Member
From: Stockholm, Sweden
Registered: 2010-03-30
Posts: 2,486
Website

Re: December 2012 Screenshots

Paul-S wrote:

Nice Unia, any chance of posting the dmenu-fm and finder scripts?

Cheers
Paul-S

Sure! Both of them have been posted here before, in the dmenu hacking thread. My finder script is only a tad different than the original (by Army, mine pipes my dmenu wrapper to set the settings) and the filemanager is a greatly simplified version of Dmenfm by Wintervenom. I couldn't find his script by any links though, so Google brought me to some Eastern European website that had it floating around big_smile

Dmenu-finder:

#!/bin/bash
input="$(xsel -o | $HOME/.bin/dmenu -p "Bestand zoeken:" )"
if [ "$input" != '' ]; then
    result="$(echo "$input" | locate -e -r "$input" | $HOME/.bin/dmenu -p "Zoekresultaat:" )"
    xdg-open "$result"
fi

Dmenu-fm:

#!/bin/bash

menu="$HOME/.bin/dmenu"
filemanager="nautilus"
executor="xdg-open"
show_hidden=0
show_backup=0
dmenu_caseinsens=1
file=1
menu="$menu $([ "$dmenu_caseinsens" == '1' ])"

while [ "$file" ]; do
    file=$((echo -e '..\n.'; ls $([[ "$show_hidden" == '1' ]] && echo '-A') $([[ "$show_backup" == '1' ]] && echo '-B'); echo -e "[Open in $filemanager]") | $menu -p "Blader: $(basename $(pwd)$
    if [ -e "$file" ]; then
        owd=$(pwd)
        if $([ -d "$file" ]); then
            cd "$file"
        else $([ -f "$file" ])
            if [ "$executor" ] && which "$executor" &> /dev/null; then
                exec "$executor" "$owd/$file" &
                unset file
            fi
        fi
    elif [[ "$file" =~ '[Open in' ]]; then
        which "$filemanager" &> /dev/null && exec "$filemanager" . &
        unset file
    fi
done

If you can't sit by a cozy fire with your code in hand enjoying its simplicity and clarity, it needs more work. --Carlos Torres

Offline

#105 2012-12-16 18:23:54

talumees
Member
From: siberia
Registered: 2009-10-28
Posts: 8

Re: December 2012 Screenshots

kamlang wrote:
talumees wrote:
kamlang wrote:

excellent font and GTK looks perfect.
share your experience, please.

Glad you like it,

font is Arimo from ttf-chromeos-fonts
gtk theme is Equinox evolution dusk from gtk-theme-equinox

thanks man, it looks nice!

Offline

#106 2012-12-16 19:14:49

TheHebes
Member
From: New England
Registered: 2011-07-07
Posts: 138

Re: December 2012 Screenshots

As usual, keeping it simple smile

Clean-
UOOed.png
A few terminals-
tz1LX.png

And the wallpaper for anyone that wants it:
http://i.imgur.com/wJIwB.jpg


Laptops:
MSI GS60 Ghost
Asus Zenbook Pro UX501VW
Lenovo Thinkpad X120e

Offline

#107 2012-12-16 19:24:42

skrite
Member
Registered: 2009-09-07
Posts: 160

Re: December 2012 Screenshots

wow, may i have your conky config?

Offline

#108 2012-12-16 19:27:30

TheHebes
Member
From: New England
Registered: 2011-07-07
Posts: 138

Re: December 2012 Screenshots


Laptops:
MSI GS60 Ghost
Asus Zenbook Pro UX501VW
Lenovo Thinkpad X120e

Offline

#109 2012-12-16 20:10:56

dziq
Member
From: Olsztyn, Poland
Registered: 2008-03-26
Posts: 65
Website

Re: December 2012 Screenshots

KDE
2012-12-16-211000_1366x768_scrot_png_300x300_q85.jpg

Offline

#110 2012-12-17 12:02:39

Localizator
Member
From: Ukraine
Registered: 2011-06-18
Posts: 11
Website

Re: December 2012 Screenshots

Clean
NzhJt.png

A few terminals
#normal
5sNzG.png

#transparent
Uj2WL.png

WM: DWM
Wallpaper: NEW YORK

Offline

#111 2012-12-17 20:26:20

jordz
Member
Registered: 2006-02-01
Posts: 248

Re: December 2012 Screenshots

Localizator wrote:

...

What font are you using?

Offline

#112 2012-12-17 21:28:38

ivoarch
Member
Registered: 2011-03-31
Posts: 436

Re: December 2012 Screenshots

RATPOISON

@DIRTY
tZ3FpMA
=
@CLEAN
tZ3FpMw

Originality..............5/5                                                                                                   
First impression....5/5                                                                                                       
Composition..........5/5                                                                                                       
Colors.....................5/5                                                                                                 
(Fav +1)                                                                                                                       
------------------------------                                                                                                 
Total Score..........20/20 smile


I love GnuEmacs, GnuScreen, ratpoison, and conkeror.
Github )||( Weblog

Offline

#113 2012-12-18 06:11:03

ninjaaron
Member
Registered: 2010-12-10
Posts: 296

Re: December 2012 Screenshots

herp-a-derp
6tgVwI7lKWSeLuFylIphLG

wallpaper is a vector trace of this with some juju added form my own sketching. My version available on request.
fonts by me
~/.Xresources

experimenting with borderless windows. Normally, text fading is activated (as in the .Xresourses) so I can see which term is active, but I turned it off for the scrot to have a more uniform look.

Last edited by ninjaaron (2012-12-18 06:13:36)

Offline

#114 2012-12-18 15:02:55

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

Re: December 2012 Screenshots

ninjaaron wrote:

wallpaper is a vector trace of this with some juju added form my own sketching. My version available on request.

request tongue


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

Offline

#115 2012-12-18 17:07:58

ninjaaron
Member
Registered: 2010-12-10
Posts: 296

Re: December 2012 Screenshots

Alright, here is bitmap version that is an appropriate size for my monitor:
http://ubuntuone.com/6kXFk62KqpXET8WB7WBKIQ

and this is the original trace which you can import to gimp as a layer at any size you want and manipulate from there:
http://ubuntuone.com/5OtBQ7GAnJ9JTrH6QpR9vc

You can create a trace of any image in inkscape in less than a minute (of user time, at least. complex traces with a lot of color can take a long time to execute, but something like this takes seconds). Tutorial here:
http://crunchbang.org/forums/viewtopic.php?id=20559

Last edited by ninjaaron (2012-12-18 17:08:44)

Offline

#116 2012-12-18 23:50:44

woomia
Member
Registered: 2012-06-09
Posts: 111

Re: December 2012 Screenshots

KDE turned out not to work so well on my laptop as primary machine so I went to FVWM. I am using the default configuration until I can think of something better.

thumb2-screenie.png

Offline

#117 2012-12-19 02:58:27

doug piston
Member
From: Seattle
Registered: 2011-09-11
Posts: 387
Website

Re: December 2012 Screenshots

tZ3IzcA

tZ3Izbw

DWM

Last edited by doug piston (2012-12-19 02:58:50)

Offline

#118 2012-12-19 03:08:25

upsidaisium
Member
From: Vietnam
Registered: 2006-09-16
Posts: 263
Website

Re: December 2012 Screenshots

Link to screenie

I've been using goomwwm for a few days now and I really like it. Out-of-the-box, it's almost exactly what I want (and it only takes a few command line options to make it just the way I want).

Last edited by upsidaisium (2012-12-19 03:09:55)


I've seen young people waste their time reading books about sensitive vampires. It's kinda sad. But you say it's not the end of the world... Well, maybe it is!

Offline

#119 2012-12-19 04:06:10

JLloyd13
Member
Registered: 2012-06-24
Posts: 107

Re: December 2012 Screenshots

can I have your xresources and the code relating to the network up/down part of your status bar?

Offline

#120 2012-12-19 05:33:22

doug piston
Member
From: Seattle
Registered: 2011-09-11
Posts: 387
Website

Re: December 2012 Screenshots

Colors are here https://github.com/w0ng/vim-hybrid

And the conky can be found on my GIT.

Offline

#121 2012-12-19 07:52:30

ShadowKyogre
Member
From: Hell! XP No... I'm not telling
Registered: 2008-12-19
Posts: 476
Website

Re: December 2012 Screenshots

On winter break and decided to try to make an arch live cd for learning experience.

tZ3I2ZA
^There it is so far, trapped in a virtualbox for now. GTK2 and GTK3 theme in there is Black Widow. PekWM theme is of my own making. Also using aWoKen icons, which I haven't colorized to the exact color scheme I want yet. I also need to tweak the spinfinity plymouth theme a tad bit to better fit the random spin I'm doing.

tZ3JlOQ
Another shot showing some default apps (Openastro.org, spacefm, and QTarot).

Last edited by ShadowKyogre (2012-12-19 21:49:56)


For every problem, there is a solution that is:
Clean
Simple and most of all...wrong!
Github page

Offline

#122 2012-12-19 18:29:54

illusionist
Member
From: localhost
Registered: 2012-04-03
Posts: 498

Re: December 2012 Screenshots

Little holiday-ish theme: DWM

P99Nss.jpg


  Never argue with stupid people,They will drag you down to their level and then beat you with experience.--Mark Twain
@github

Offline

#123 2012-12-19 22:46:00

Thom
Member
Registered: 2012-05-22
Posts: 72
Website

Re: December 2012 Screenshots

Same config with some change.

I've done some little script in order to rotate my second screen. I adapt the wallpaper to the screen orientation.
I've change the wall to art from The Witcher 2 from gog.com bonus.

ecceaeaa-10b9-4ff0-b4e5-374c06feddda.jpg

1920*1080 + 1920*1080 for everything...
http://tof.canardpc.com/view/4e8018e9-0 … ca6fd1.jpg

1920*1080 + 1080*1920 ... except some lecture
http://tof.canardpc.com/view/8d9e9f5e-3 … 641d0c.jpg

subtle (:3) + vim + ncmpcpp.

Offline

#124 2012-12-20 21:20:14

ninjaaron
Member
Registered: 2010-12-10
Posts: 296

Re: December 2012 Screenshots

I've wanted to try something like this. How do you like it?

Offline

#125 2012-12-20 22:06:54

Thom
Member
Registered: 2012-05-22
Posts: 72
Website

Re: December 2012 Screenshots

Oups,
I'm not so fluent, at first I understand the end of the post like "how do you done this ?"
Sorry.

I start(x) with :

#1 - fehbgdroit
feh --bg-tile ~/metro.d/images.d/wallpapers.d/thewitcher2.d/3840x1080-2.png

in my xinitrc.

I've done three more scripts. I keep them all in a .screenlayout directory.

In order to have the good wallpaper in the other configuration I create another wallpaper  :

#2 - fehbginverse
feh --bg-tile ~/metro.d/images.d/wallpapers.d/thewitcher2.d/3840x1080-2.png

For the rotation I use xrandr :

#1 - screendroit
xrandr --output DisplayPort-0 --off --output DVI-1 --mode 1920x1080 --pos 1920x0 --rotate normal --output DVI-0 --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-0 --off 
#2 - screeninverse
xrandr --output DisplayPort-0 --off --output DVI-1 --mode 1920x1080 --pos 1920x0 --rotate left --output DVI-0 --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-0 --off

And I just use some alias :
alias paysage='sh ~/.screenlayout/screendroit & sh ~/.screenlayout/fehbgdroit'
alias portrait='sh ~/.screenlayout/screeninverse  & sh ~/.screenlayout/fehbginverse'

Maybe it's possible to only have one wallpaper with a pretty size of 3840x1920.

Last edited by Thom (2012-12-20 22:08:10)

Offline

Board footer

Powered by FluxBB