You are not logged in.

#101 2011-05-01 16:08:32

Gnux
Member
Registered: 2006-09-27
Posts: 26

Re: Show off your XFCE desktop!

@gregory.kovalev : I love that cat wallpaper, would you mind sharing it?

Offline

#102 2011-05-03 00:13:42

Beelzebud
Member
From: Illinois, U.S.
Registered: 2010-07-16
Posts: 154

Re: Show off your XFCE desktop!

Clean:
th_xfce4-1.png
Dirty:
th_xfce4-2.png

This is Xfce4 with Avant-Window-Navigator-bzr (from AUR), and conky.  The theme for AWN is the Clearlooks Dark theme that comes in the bzr version, which I tweaked to my preferences.

Conky is using a python2 script for fetching mpd album art, and paconky (from AUR) for grabbing status of pacman and AUR package updates.  I like how it turned out.   The taskbar seems large, but with AWN there is a setting called "Intellihide" which will force the taskbar to hide if anything covers it.   The MPD music status also disappears if no music is playing. 

conkyrc

background yes
use_xft yes
xftfont JH_FALLOUT:size=6
xftalpha 0.8
override_utf8_locale yes
update_interval 2
own_window no
double_buffer yes
draw_shades no
stippled_borders no
#border_margin 0
border_width 0
default_color 03fef9
color0 03fef9
color1 00c3d0
default_shade_color black
alignment top_left
minimum_size 1680
gap_x 0
gap_y 0
no_buffers yes
##uppercase yes
short_units yes
pad_percents 2
text_buffer_size 1024
imlib_cache_size 0 
##
##
TEXT
${GOTO 105}${if_mpd_playing}${mpd_artist} - ${mpd_title} - ${mpd_album}${endif}${alignr 5}${execpi 3600 paconky /home/beelzebud/.repos.paconky}
${GOTO 105}${if_mpd_playing}${color1}${mpd_bar  5,170}${color}${endif}${alignr 5}${execpi 3600 paconky /home/beelzebud/.aur.paconky}
${GOTO 105}${if_mpd_playing}${mpd_status}${GOTO 185}${mpd_elapsed}${GOTO 220}/${GOTO 235}${mpd_length}${endif}
${if_mpd_playing}${execi 5 /home/beelzebud/.conky-mpd-albumart}${image /tmp/cover -s 100x100 -p 0,0}${endif}
${voffset 85}${GOTO 1220}CPU: ${color1}${cpubar cpu0 6,75}  ${cpu cpu0}%${color} 
${GOTO 1220}Processes:  ${color1}$running_processes/$processes${color}
${GOTO 1220}Load:  ${color1}${loadavg}${color}
${voffset 6}${GOTO 360}RAM: ${color1}${membar 6,50}  ${memperc}%${color}
${GOTO 360}SWAP: ${color1}${swapbar 6,70}${color}     
${GOTO 360}Uptime:  ${color1}$uptime_short${color}
${voffset 228}${GOTO 300}SDA: ${color1}${diskiograph sda 6,70}${color}  
${GOTO 300}SDB: ${color1}${diskiograph sdb 6,70}${color} 
${GOTO 300}/root: ${color1}${fs_free /}${color}  
${GOTO 300}/home: ${color1}${fs_free /home}${color}          
${GOTO 300}/sdb: ${color1}${fs_free /media/sdb}${color}
${voffset 140}${GOTO 1205}Up: ${color1}${totalup eth1}  ${upspeedgraph eth1 6,75}  ${upspeed eth1}${color}
${GOTO 1205}Down: ${color1}${totaldown eth1}  ${downspeedgraph eth1 6,75}  ${downspeed eth1}${color}
${GOTO 1205}Local IP: ${color1}${addr eth1}${color}
${GOTO 1205}External IP: ${color1}${execi 6600 wget -O - http://ip.tupeux.com | tail}

mpd script (a frankenstein cobbled together from a couple of other scripts)

#! /usr/bin/env python2

import os
import shutil
import commands
import urllib

def copycover(currentalbum, src, dest, defaultfile):
    searchstring = currentalbum.replace(" ", "+")
    if not os.path.exists(src):
        url = "http://www.albumart.org/index.php?srchkey=" + searchstring + "&itempage=1&newsearch=1&searchindex=Music"
        cover = urllib.urlopen(url).read()
        image = ""
        for line in cover.split("\n"):
            if "http://www.albumart.org/images/zoom-icon.jpg" in line:
                image = line.partition('src="')[2].partition('"')[0]
                break
        if image:
            urllib.urlretrieve(image, src)
    if os.path.exists(src):
        shutil.copy(src, dest)
    elif os.path.exists(defaultfile):
        shutil.copy(defaultfile, dest)
    else:
        print "Image not found!"

# Path where the images are saved
imgpath = os.getenv("HOME") + "/.covers/"

# image displayed when no image found
noimg = imgpath + "nocover.png"

# Cover displayed by conky
cover = "/tmp/cover"

# Name of current album
album = commands.getoutput("mpc --format %artist%+%album% | head -n 1")

# If tags are empty, use noimg.
if album == "":
    if os.path.exists(conkycover):
        os.remove(conkycover)
    if os.path.exists(noimg):
        shutil.copy(noimg, conkycover)
    else:
        print "Image not found!"
else:

    filename = imgpath + album + ".jpg"
    if os.path.exists("/tmp/nowplaying") and os.path.exists("/tmp/cover"):
        nowplaying = open("/tmp/nowplaying").read()
        if nowplaying == album:
            pass
        else:
            copycover(album, filename, cover, noimg)
            open("/tmp/nowplaying", "w").write(album)
    else:
        copycover(album, filename, cover, noimg)
        open("/tmp/nowplaying", "w").write(album)

Last edited by Beelzebud (2011-05-03 00:14:25)

Offline

#103 2011-05-08 13:56:08

splippity
Member
Registered: 2010-05-25
Posts: 144

Re: Show off your XFCE desktop!

Beelzebud wrote:

This is Xfce4 with Avant-Window-Navigator-bzr (from AUR), and conky.  The theme for AWN is the Clearlooks Dark theme that comes in the bzr version, which I tweaked to my preferences.

So I pick up the same avant copy and mine looks like crap. The settings dont make it function as intended. How do you make it a full bar? how do you get that look?

Its xfce4 and awn from aur even the avant extras.
Any ideas??
Your setup looks pretty awesome. Thanks.

Offline

#104 2011-05-09 02:54:44

Beelzebud
Member
From: Illinois, U.S.
Registered: 2010-07-16
Posts: 154

Re: Show off your XFCE desktop!

Yeah it's just the bzr version for the main app and the extras.    Use the Clearlooks Dark theme.   It has the Lucidio style bar.  Then just use the Separators from Applets to mark where you want the transitions in the bar to be. 

Thanks for the compliment.

Offline

#105 2011-05-23 06:54:40

Mr_ED-horsey
Member
From: Portland, OR
Registered: 2011-04-06
Posts: 177

Re: Show off your XFCE desktop!

XFCE + Cairo-compmgr + AWN... XFCE Dusk Them with TechniX window border...

http://i1219.photobucket.com/albums/dd4 … 015433.png

Might switch out the XFCE Dusk theme with the Clearlooks Dark theme that Beelzebub is using. It looks nice.

Last edited by Mr_ED-horsey (2011-05-23 07:02:08)


Desktop: Fedora 21 Mate + Compiz [x86_64] on 2 TiB HDD  /  Windows 7 Professional [x86_64] on 500 GiB HDD
Laptop: Arch Linux + Openbox [i686] 120 GiB SSD on Acer c720 Chromebook

Offline

#106 2011-05-27 18:46:51

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

Wow, it's been a while since I posted here. Anyway:

QPgdXs.jpg
Xfwm: Ambiance (ported from the Metacity theme)
Gtk: Customized Ambiance (basically s/orange/purple)
Icons: Faenza Dark (Wicd network icon here)
Conky: Custom with real transparency!


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

#107 2011-05-27 18:50:18

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

Mr_ED-horsey wrote:

XFCE + Cairo-compmgr + AWN... XFCE Dusk Them with TechniX window border...

http://i1219.photobucket.com/albums/dd4 … 015433.png

Might switch out the XFCE Dusk theme with the Clearlooks Dark theme that Beelzebub is using. It looks nice.

Why exactly are you using cairo-compmgr when xfwm's builtin compositor is quite amazing? I'm genuinely curious smile


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

#108 2011-05-27 19:22:02

Jodell
Member
Registered: 2009-10-09
Posts: 285

Re: Show off your XFCE desktop!

Clean:
tOHRpcw

Dirty:
tOHRpcg

Offline

#109 2011-05-28 15:37:23

Mr_ED-horsey
Member
From: Portland, OR
Registered: 2011-04-06
Posts: 177

Re: Show off your XFCE desktop!

dcc24 wrote:

Why exactly are you using cairo-compmgr when xfwm's builtin compositor is quite amazing? I'm genuinely curious smile

No real reason other than I've never used the cairo-compmgr and was curious about it. I switch things out a lot.


Desktop: Fedora 21 Mate + Compiz [x86_64] on 2 TiB HDD  /  Windows 7 Professional [x86_64] on 500 GiB HDD
Laptop: Arch Linux + Openbox [i686] 120 GiB SSD on Acer c720 Chromebook

Offline

#110 2011-05-28 20:40:18

Mostly
Member
Registered: 2011-01-20
Posts: 5

Re: Show off your XFCE desktop!

@dcc24

What did you make to have desktop/music/videos/downloads/etc custom icons in Thunar?...

Thank you smile

Offline

#111 2011-05-28 21:14:48

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

Mostly wrote:

@dcc24

What did you make to have desktop/music/videos/downloads/etc custom icons in Thunar?...

Thank you smile

I didn't do anything specific. If your icon theme has folder-specific icons, it simply uses them. The folders themselves are defined in ~/.config/user-dirs.dirs

Here's mine:

# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
# 
XDG_DESKTOP_DIR="$HOME/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/"
XDG_PUBLICSHARE_DIR="$HOME/"
XDG_DOCUMENTS_DIR="$HOME/Documents"
XDG_MUSIC_DIR="$HOME/Music"
XDG_PICTURES_DIR="$HOME/Pictures"
XDG_VIDEOS_DIR="$HOME/Videos"

Last edited by dcc24 (2011-05-28 21:15:04)


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

#112 2011-05-28 21:37:08

Mostly
Member
Registered: 2011-01-20
Posts: 5

Re: Show off your XFCE desktop!

I'm using Faenza.. so I have "folder-downloads.png, etc" under ~/.icons/Faenza/places/. And user-dirs is complete like yours. I've also run xdg-usr-dirs-update.. but without favorable results.

One strange thing is that when a select a file for upload from i.e. firefox... then, I can see the folders with custom icons. But not in the main Thunar window sad.

Anyway thanks, I will see if I can fix it.. now that I know what I need smile

Offline

#113 2011-05-28 21:38:37

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

@Mostly: Well, as you can see I'm having the same problem with the "Pictures" folder so if you can find a solution, let me know smile


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

#114 2011-05-28 21:59:43

staticsafe
Member
Registered: 2011-05-28
Posts: 1
Website

Re: Show off your XFCE desktop!

Here is mine:

archforums1-thumb.png

All details are included in screenshot. smile


Currently running:
Arch Linux (Kernel - 2.6.38)
DEs/WMs - XFCE or GNOME3
Login Manager - Slim

Offline

#115 2011-05-30 17:19:05

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

Mostly wrote:

I'm using Faenza.. so I have "folder-downloads.png, etc" under ~/.icons/Faenza/places/. And user-dirs is complete like yours. I've also run xdg-usr-dirs-update.. but without favorable results.

One strange thing is that when a select a file for upload from i.e. firefox... then, I can see the folders with custom icons. But not in the main Thunar window sad.

Anyway thanks, I will see if I can fix it.. now that I know what I need smile

After making sure the user dirs are correct, a reboot fixed my icon issue. Hope it helps.


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

#116 2011-05-30 18:31:29

MrCode
Member
Registered: 2010-02-06
Posts: 373

Re: Show off your XFCE desktop!

Cross-post from the general monthly screenies thread:

116rggx_th.png

2i9rp6d_th.png

28kspro_th.png

Yes, I'm using Compiz as my WM under Xfce. tongue

The GTK theme is a (somewhat heavy) modification of "Murrina-Dark".  I made it red to match my lappy's color, LOL.  Also, I really like dark themes; they're easier on the eyes (in more than one way big_smile).

Last edited by MrCode (2011-05-30 18:35:14)

Offline

#117 2011-06-02 08:34:49

eMKey
Member
From: Eskişehir / Turkey
Registered: 2011-05-05
Posts: 3

Re: Show off your XFCE desktop!

tOHcyNw

tOHcyOA

GTK Theme: DrakFire Black Mod
Emerald Theme: Minimal
Icon Theme: Any Color You Like
Wallpaper: http://ompldr.org/vOHcyYg

Offline

#118 2011-06-07 10:19:42

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: Show off your XFCE desktop!

screenshot-060711-121125.jpg

screenshot-060711-121749.jpg

Offline

#119 2011-06-07 10:24:12

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

Oh, wow... Questions:

- What panel is that?
- Can you post the panel config?
- Conky config?
- Wallpaper?


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

#120 2011-06-07 11:00:12

na12
Member
From: /home/serbia
Registered: 2008-12-23
Posts: 752

Re: Show off your XFCE desktop!

dcc24 wrote:

Oh, wow... Questions:

- What panel is that?
- Can you post the panel config?
- Conky config?
- Wallpaper?

Panel is xfce4-panel,it is zukitwo theme with custom background.Conky configs you can find below.
Wallpaper

Offline

#121 2011-06-11 15:54:24

Radioactiveman
Member
From: Germany
Registered: 2010-05-13
Posts: 388

Re: Show off your XFCE desktop!

xfce3uik.jpg

Offline

#122 2011-06-13 11:13:58

Viper_Scull
Member
From: London, UK
Registered: 2011-01-15
Posts: 153

Re: Show off your XFCE desktop!

guys i'm using emerald with the theme A new Hope for gtk2.

Now the problem is that some applications like evince are updated to gtk3, and they look like shit.
Is there any way to sort this out keeping this theme (which i love)?


Athlon II X4 620 + Gigabyte 785GPM-UD2H + 4GB DDR3 + SSD OCZ Vertex2 60GB

Archlinux x86_64 + Openbox

Offline

#123 2011-06-13 11:25:19

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

Viper_Scull wrote:

Now the problem is that some applications like evince are updated to gtk3, and they look like shit.

A google search with "site:bbs.archlinux.org" would go a looong way...


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

#124 2011-06-13 14:33:53

Viper_Scull
Member
From: London, UK
Registered: 2011-01-15
Posts: 153

Re: Show off your XFCE desktop!

dcc24 wrote:
Viper_Scull wrote:

Now the problem is that some applications like evince are updated to gtk3, and they look like shit.

A google search with "site:bbs.archlinux.org" would go a looong way...

Who says i didnt search?

There is just stuff about gtk-window-decorator, Adwaita theme, and so...
Not my case, with compiz + emerald, and my no interest at all in changing this theme.

Last edited by Viper_Scull (2011-06-13 14:34:23)


Athlon II X4 620 + Gigabyte 785GPM-UD2H + 4GB DDR3 + SSD OCZ Vertex2 60GB

Archlinux x86_64 + Openbox

Offline

#125 2011-06-13 14:52:15

dcc24
Member
Registered: 2009-10-31
Posts: 732

Re: Show off your XFCE desktop!

Viper_Scull wrote:
dcc24 wrote:
Viper_Scull wrote:

Now the problem is that some applications like evince are updated to gtk3, and they look like shit.

A google search with "site:bbs.archlinux.org" would go a looong way...

Who says i didnt search?

There is just stuff about gtk-window-decorator, Adwaita theme, and so...
Not my case, with compiz + emerald, and my no interest at all in changing this theme.

Compiz/emerald is WM/WM decorator and has nothing to do with how the application looks. You need to change the GTK3 theme (there are ~10 themes for GTK3 nowadays), instructions to which are already posted in the forums.


It is better to keep your mouth shut and be thought a fool than to open it and remove all doubt. (Mark Twain)

My AUR packages

Offline

Board footer

Powered by FluxBB