Xfce Forum

Sub domains
 

You are not logged in.

#1 2016-12-31 14:44:34

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Screenshots - 2017

Since it's 2017 already somewhere in the world, lets start a new thread.

17aca479134e2675d61085311feecacc3.png

Happy new year!


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#2 2016-12-31 15:02:31

Jerry3904
Member
Registered: 2013-11-09
Posts: 850

Re: Screenshots - 2017

Goodby 2016--we're not going to miss you down here...

So here is my take on the desktop of the new MX-16, of which the reviews so far have been off the charts!
screenshot1483d0d730f18637ec7ec941f1deb1d1.png


MX-23 (based on Debian Stable) with our flagship Xfce 4.18.

Offline

#3 2017-01-10 07:40:41

Art2
Member
Registered: 2014-12-19
Posts: 10

Re: Screenshots - 2017

@ToZ what plugin are you using for weather?

capturadepantalla2017-01-1001-13-50.png

Panel plugins from left to right:
xfce4-whiskermenu-plugin
xfce4-places-plugin
Workspace Switcher
Window Buttons
xfce4-hardware-monitor-plugin
xfce4-systemload-plugin
xfce4-cpugraph-plugin
Notification Area
xfce4-indicator-plugin
xfce4-mailwatch-plugin
xfce4-weather-plugin
Clock

Offline

#4 2017-01-10 14:59:28

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: Screenshots - 2017

Art2 wrote:

@ToZ what plugin are you using for weather?

I'm actually using the genmon plugin and a script I wrote to parse through a wunderground rss feed. I wanted a different display of information than the plugin was able to provide.
weather0.png
If you're interesting, I can post a link to the script and associated icon files.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#5 2017-01-10 19:28:17

Art2
Member
Registered: 2014-12-19
Posts: 10

Re: Screenshots - 2017

ToZ wrote:
Art2 wrote:

@ToZ what plugin are you using for weather?

I'm actually using the genmon plugin and a script I wrote to parse through a wunderground rss feed. I wanted a different display of information than the plugin was able to provide.
http://en.zimagez.com/miniature/weather0.png
If you're interesting, I can post a link to the script and associated icon files.

Sure, only if it is not too much trouble, I would like to see it.

Offline

#6 2017-01-10 20:04:22

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: Screenshots - 2017

Art2 wrote:

Sure, only if it is not too much trouble, I would like to see it.

https://www.dropbox.com/s/0bn266nzaokw3 … ar.gz?dl=0


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#7 2017-01-11 08:41:50

Javarod
Member
From: STL, MO, US, Earth
Registered: 2016-12-15
Posts: 21
Website

Re: Screenshots - 2017

Ok y'all, here's how my year starts. Bonus for you, this is the latest version,since I shared it on the Manjaro forums, I've changed out the icons, font and added the Conky. Only thing left is a bit of tweaking of said Conky, I want to add at least a readout from DeadBeef if not controls, along with a torrent read out (currently using QBitTorrent, but that could change as needed).

Oh, and ifn you can't guess, the bottome screen is smaller than the upper one, hence the black bars on the edge.

Screenshot_2017_01_11_02_36_48.png


Seph
Taur10 LJ, Tel & Tum TaurTen Twit
Lenovo M700 tiny Manjaro XFCE • Lenovo N22 KiboJoe
I've always been crazy, but its kept me from going insane

Offline

#8 2017-01-19 19:06:05

gnanini
Member
Registered: 2017-01-19
Posts: 16

Re: Screenshots - 2017

ToZ, which applet do you use to display the desktop you are using?

screenshot2017-01-1917-02-41.php

this is my desktop today... everyday I change my wallpaper...

Last edited by gnanini (2017-01-19 19:13:10)

Offline

#9 2017-01-19 19:10:35

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: Screenshots - 2017

gnanini wrote:

ToZ, which applet do you use to display the desktop you are using?

You mean the notification bubble displaying my current workspace? Just a script I wrote and run on startup. Here it is:

#!/bin/sh

#Name: 		wsp_notify
#Description: 	Using notify-send, pop-up the current workspace number when changing workspaces
#Requires: 	xfce4-notifyd, libnotify, wmctrl
#Debug mode:	bash -xv /path/to/wsp_notify 2>&1 | tee wsp_notify.log

# make sure that only one instance of this script is running per user
lockfile=/tmp/.wsp_notify.$USER.lockfile
if ( set -o noclobber; echo "locked" > "$lockfile") 2> /dev/null; then
  	trap 'rm -f "$lockfile"; exit $?' INT TERM EXIT
  	echo "wsp_notifyDEBUG: Locking succeeded" >&2

  	# on startup, set the CURRENT_WORKSPACE value
  	CURRENT_WORKSPACE=$(($(wmctrl -d | grep \* | cut -d' ' -f1)+1))
  	# get the workspace names (starts at index 2)
	NAMES=(`xfconf-query -c xfwm4 -p /general/workspace_names | grep -v "Value is an array"`)

  	# every second, query the active workspace number and if different from the previous one, send a notification
	while true
	do
		sleep 1
		NEW_WORKSPACE=$(($(wmctrl -d | grep \* | cut -d' ' -f1)+1))	
		NEW_WORKSPACE_NAME="${NAMES[$(($NEW_WORKSPACE-1))]}"
		if [ $CURRENT_WORKSPACE -ne $NEW_WORKSPACE ]; then
		
		    notify-send -t 5 "$(echo Workspace | sed -e :a -e 's/^.\{1,10\}$/ & /;ta')" "<b><span font='110'>$NEW_WORKSPACE</span></b>\n<i>$(echo $NEW_WORKSPACE_NAME | sed -e :a -e 's/^.\{1,17\}$/ & /;ta')</i>"
			
			CURRENT_WORKSPACE=$NEW_WORKSPACE
		fi
	done

# can't create lockfile - notify user and quit
else

  	echo "wsp_notifyDEBUG: Lock failed, check for existing process and/or lock file and delete - exiting." >&2
  	exit 1
fi			

exit 0

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#10 2017-01-19 19:13:53

gnanini
Member
Registered: 2017-01-19
Posts: 16

Re: Screenshots - 2017

tks

it is exactly a feature I miss on Xfwm4! sometimes I use openbox and it is very nice that desktops changes are poped up!

I miss also directional switching and a fading effect on Xfwm4!

awesome

Last edited by gnanini (2017-01-19 19:22:20)

Offline

#11 2017-01-20 12:56:12

dbanie
Member
From: In Sky
Registered: 2017-01-20
Posts: 2

Re: Screenshots - 2017

Hi All...

Happy to join xfce community at the beginning of the year ^_^

Here is my shoot:

screenshot2017-01-2019-37-20.png

XFCE on Arch

Cheers,
dbanie

# Weather script thanks to @ToZ really awesome script ^_^

Offline

#12 2017-01-24 05:38:36

ColdBoot
Member
Registered: 2016-07-19
Posts: 31

Re: Screenshots - 2017

Not all that different, I find red color both soothing to the eyes and keeping the spirits high. big_smile Bye...

Screenshot_2017_01_24_06_31_27.png

Offline

#13 2017-02-04 15:57:07

Vienna
Member
Registered: 2010-12-02
Posts: 6

Re: Screenshots - 2017

Fedora 25 & Xfce 4.12

Pretty much the same as in the last 3,4 years, only changed the GTK-theme from Greybird to Zukitwo (less issues with Zukitwo and the thin Greybird-borders have started to annoy me a little bit)...

bildschirmfoto_0010yskw.png bildschirmfoto_002rvsqy.png

Offline

#14 2017-02-21 15:03:40

fsfg
Member
Registered: 2016-12-24
Posts: 2

Re: Screenshots - 2017

Manjaro 16.10 / Xfce4 4.12

Arc-dark as GTK2/3 theme 'cause that most complete dark theme.
7HcnOqos.png u9pZlW1s.png 5W8dsnGs.png 2d9w08Ms.png 2Lh7USus.png

Offline

#15 2017-02-21 16:41:10

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: Screenshots - 2017

Thanks to ToZ for it's wonderful wsp_notify.sh script!

In my Linux Mint 18 Xfce works like a charm! :-)

Offline

#16 2017-02-22 17:57:28

sixsixfive
Member
From: behind you
Registered: 2012-04-08
Posts: 579
Website

Re: Screenshots - 2017

simple and colorful

AGJT6Xwl.jpg

Offline

#17 2017-02-22 18:36:41

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: Screenshots - 2017

My Linux Mint 18 Sarah xfce 4.12 desktop:

VZCVoy8.png

Style: Arc Darker
Icon Set: Super Ultra Flat Numix Remix
Window decoration: Arc-Darker-OSX
Font type: SFNS Display (OSX SanFrancisco font display)

Thanks to ToZ and it's wsp_notify.sh, on the right top is displayed a workspace notification.

Last edited by wuwei (2017-06-10 20:37:39)

Offline

#18 2017-03-14 09:58:34

Pragma
Member
Registered: 2017-03-14
Posts: 1

Re: Screenshots - 2017

Xfce4 Numix Grey Theme:
xqtg6lh.png


The main theme is Adwaita, and I took Numix Icon Pack as a base.
I'm not sure that this is the right place but there is Dropbox link to Zip archive: Numix Grey icon pack
Just open Appearance window and drop unpacked folder there.

Dear moderators, if i choose a wrong place, could you move it to the right one, please?

Last edited by Pragma (2017-03-14 10:17:05)

Offline

#19 2017-03-16 14:58:00

Imerion
Member
Registered: 2015-04-04
Posts: 24

Re: Screenshots - 2017

Since I really like watching this thread, here is my contribution:

My Xubuntu desktop

Style : Greybird
Icon Set : Ubuntu-Mono-Dark
Window Decoration : Greybird Accessibility
Fonts : Noto Sans UI
Background : My own

Last edited by Imerion (2017-03-16 14:58:43)

Offline

#20 2017-03-17 14:47:58

wuwei
Member
From: Italy
Registered: 2017-01-29
Posts: 56

Re: Screenshots - 2017

My new Linux Mint 18 Sarah xfce 4.12 desktop with a NEW conky configuration:

zBQTP6g.jpg

Style: Arc Darker
Icon Set: Flatterd
Window decoration: Arc-Darker-OSX
Font type: SFNS Display (OSX SanFrancisco font display)

Last edited by wuwei (2017-06-04 18:20:23)

Offline

#21 2017-04-13 20:22:07

Spass
Member
From: Poland
Registered: 2016-12-07
Posts: 133

Re: Screenshots - 2017

grey-desktop-clean.md.png
grey-desktop-web.md.png

GTK Plano Icons Numix Square Xfwm Plano Blue Wallpaper rhino grey

Offline

#22 2017-04-26 15:20:04

marcolin
Member
Registered: 2017-04-26
Posts: 1

Re: Screenshots - 2017

Got a lot of inspirations from this forum. Just post my screen here
screenshot

Last edited by marcolin (2017-04-26 15:32:38)

Offline

#23 2017-04-28 00:07:37

jere2001
Member
Registered: 2011-02-24
Posts: 12

Re: Screenshots - 2017

My dark workspace:

y37ssTW.jpg

The GTK theme is in my dropbox:

https://www.dropbox.com/s/x7bf6mt8ug0pd … 0.zip?dl=0

Offline

#24 2017-04-29 19:44:46

looonger
Member
From: Poland
Registered: 2015-05-02
Posts: 2

Re: Screenshots - 2017

Ts1lYWp.png

http://i.imgur.com/Ts1lYWp.png

Simple and classic.
Icons -  Papirus
Theme - Arc

Offline

#25 2017-05-03 10:22:11

rogue_ronin
Member
Registered: 2015-03-03
Posts: 21

Re: Screenshots - 2017

toZdf93l.png
TBdUK8Sl.png
VLmfrWGl.png
w1pnrQ1l.png

GTK Theme: Cloak-3.20
Icon Theme: AwOkenWhite
WM Style: Default-hdpi
TitleBar Font: Cantarell Oblique 14
System Font: Cantarell 14
Cursor Theme: Breeze
Firefox Stylish Plugin: Pitch Black Global Dark Theme, latest

Maximized windows have no titlebar (Alt + mouse to break it free.)

xfce4-terminal --dropdown hooked to F1 keyboard shortcut.  Little hard to position (not as good as tilda) but managed to get it almost to completely fill the non-panel area.  Lots of tweaks to the preferences to get a look I like.

Two panels.

Top panel has whisker menu, separator,  dockbar-x plugin, and systray plugin.  No indicator plugin.

Left panel has workspace switcher with workspace names 'L' and 'R', launchers for MoodyRain, Firefox, Thunar and Settings Manager, then Orage plugin and action button plugin (set to session menu).

I know I could move dockbar-x and whisker menu to left bar, pin my apps, delete the launchers and make systray sit in a little semi-transparent panel.  Might do that now that I've written it!  I'm on an x131e Thinkpad (great little machine!) and should be maximizing my vertical space.

I will probably also switch to the i3 window manager on top of remaining XFCE.  I'm obviously on Manjaro XFCE, which is pretty great.  So I should have access to the i3 plugins for XFCE.

Aloha.

PS: yup, probably better this way --

Yt4Xvg9l.png

Gotta bring the mouse to the tray to show it; set to intelligently hide, it's the only plugin in the panel.

Anybody know how to create a launcher on dockbar-x without having a window to pin?  MoodyRain is a yad dialog, not a real app -- a script, basically.

Offline

Board footer

Powered by FluxBB