Xfce Forum

Sub domains
 

You are not logged in.

#26 2020-06-28 03:46:06

Shifu
Member
Registered: 2020-06-28
Posts: 7

Re: Screenshots - 2020

MX Linux setup. Really love MX and XFCE.
Main thing for me is usability so a clear, grippable, unambiguous theme is important. I developed this one myself with a 7px frame.
I get better performance on this laptop with the compositor disabled despite having an decent graphic card. The response to mouse clicks is absolutely like lightning.
I've been on MX 7 months now and have no inclination to change.

Desk1.png

Last edited by Shifu (2020-06-28 04:00:10)

Offline

#27 2020-07-12 08:02:53

Shifu
Member
Registered: 2020-06-28
Posts: 7

Re: Screenshots - 2020

New shot of my MX system. Spent a bit of time learning to theme window decorations and have been happy with the results.

blueshot.png

Offline

#28 2020-07-16 15:10:46

Erreffel1
Member
Registered: 2020-05-09
Posts: 5

Re: Screenshots - 2020

Shifu wrote:

New shot of my MX system. Spent a bit of time learning to theme window decorations and have been happy with the results.

Nice job ! I really like your window decorations and colours.

Offline

#29 2020-07-28 08:43:17

mandrivaONE07
Member
From: Costa Rica
Registered: 2020-07-28
Posts: 15
Website

Re: Screenshots - 2020

... hola mundo!

VUhlkqpfLWY.jpg

mQUbNaA6_yQ.jpg

Last edited by mandrivaONE07 (2020-07-28 08:55:25)


Mozilla/5.0 (X11;Debian 6.0.9 "squeeze" Linux, 2.6.32-5-686->AuthenticAMD, GNOME 2.30.2) Gecko/20100101 Firefox/49.0 SeaMonkey/2.46

Offline

#30 2020-08-16 15:45:42

Leinnan
Member
Registered: 2014-09-09
Posts: 30

Re: Screenshots - 2020

tKp2K0Q.png
Distro: Xubuntu 20.04

Launcher: Rofi with sidebar theme with changed colors

Font: Noto Sans

Wallpaper: https://wallhaven.cc/w/j528py

I also removed xfdesktop("replaced" with feh) and whisker-menu(replaced with j4-dmenu-desktop with rofi)

Another shot: https://i.imgur.com/HegiHRM.png

Offline

#31 2020-08-22 12:06:39

girl
Member
From: French girly
Registered: 2020-06-11
Posts: 8

Re: Screenshots - 2020

Distro : Debian              Font : Zekton             Theme : Mint-Y-Dark-Aqua             Icons : Surfn-Numix-Polo             Personnal wallpaper

uninstallation of all plugins (brightness, sound, networkmanager applet)
use of the genmon plugin with a script adapted to my needs
using the fonts-noto-color-emoji package for emojis in the panel

I gained in practicality, that was the goal with genmon.

#!/bin/bash

# UPTIME #
up=$(awk '{print int($1/86400)"d "int($1%86400/3600)"h "int(($1%3600)/60)"m"}' /proc/uptime)

# UTILISATION DU CPU EN POURCENTAGE #
cpu=$(top -bn 1 | awk '/Cpu/{printf "%d", $2+$4+$10}')

# TEMPÉRATURE DU CPU #
cputemp=$(awk '{print $1/1000}' /sys/class/hwmon/hwmon1/temp1_input)

# UTILISATION DE LA RAM ET SON RÉSULTAT EN POURCENTAGE #
ram=$(free -b | awk '/Mem:/{printf "%.2f",$3/1073741824}')
ramperc=$(free -b | awk '/Mem:/{printf "%d",($3/$2)*100}')

# POURCENTAGE DE LA BATTERIE ET SON STATUS #
# Pour connaître la capacité de la batterie en pourcentage #
cap=$(awk '{print $1 " %"}' /sys/class/power_supply/BAT0/capacity)
# Pour indiquer si la batterie est présente dans le pc ou non #
test $(cat /sys/class/power_supply/BAT0/uevent | awk '/POWER_SUPPLY_PRESENT=/') == 'POWER_SUPPLY_PRESENT=1' && pres="" || pres="❌ Batterie non présente"
# Pour connaître le status actuel de la batterie #
case $(awk -F'=' '/^POWER_SUPPLY_STATUS/{print $2}' /sys/class/power_supply/BAT0/uevent) in
   "Charging") state="⚡ ";;
   "Discharging") state="? ";;
   "Full") state="✅ ";;
   "Unknown") state="✅ ";;
esac

# TEMPÉRATURE DE LA NVIDIA #
gpu=$(($(</sys/class/hwmon/hwmon2/temp1_input) / 1000 ))

# AFFICHE LA DATE #
date=$(date "+%A %e %B %Y")

# AFFICHE L'HEURE #
heure=$(date "+%H:%M")

# AFFICHE LE VOLUME EN POURCENTAGE ET LE STATUS DE LA SOURDINE #
son=$(pacmd list-sinks | awk '/volume: front/{ print ($5+$12)/2}')
test $(pactl list sinks | awk '/Sourdine/{print $2}') == 'oui' && ismute=? || ismute=?

# AFFICHE LA LUMINOSITÉ EN POURCENTAGE #
lum=$(light -G | awk '{printf "%d", $1}')

# AFFICHE L'ÉTAT DE LA CONNEXION INTERNET #
# Pour indiquer sur quel réseau la wifi est connectée #
net=$(nmcli device status | awk '/wlp8s0/{print "? " $4}')
# Pour connaître l'état actuel de la carte wifi #
case $(nmcli device status | awk '/wlp8s0/{print $3}') in
   "déconnecté") net="? Pas de Wifi";;
   "indisponible") net="❌ Mode Avion";;
esac
# Pour indiquer que le partage internet via le téléphone en usb est actif #
case $(nmcli device status | awk '/usb0/{print $3}') in
	"connecté") net="? Partage GSM usb";;
esac
# Pour indiquer que la connexion Ethernet est établie #
#case $(nmcli device status | awk '/enp7s0/{print $3}') in
#	"connecté") net="? Ethernet";;
#esac

# PERMET AU SCRIPT D'ÊTRE AFFICHÉ DANS LE PANEL SUR UNE SEULE LIGNE #
echo "<txt>       ? $date       ? $heure       ?$gpu °C       $ismute $son %       $pres$state$cap       ? $lum %       $net       ⏳ $up       ? $ram Go  ($ramperc %)       ?$cputemp °C       ? $cpu %</txt>"

# PERMET DE MASQUER LA TOOLTIP SUR LE PANEL #
echo "<tool></tool>"

Capture-d-cran-2020-08-22-14-00-45.png


live to live, not live to survive !

Offline

#32 2020-09-16 17:19:00

cyberghost
Member
From: Texas
Registered: 2020-09-11
Posts: 37

Re: Screenshots - 2020

MX Linux 19.2 Patito Feo Xfce 4.14

AbBG8cT.png

zyQY3Lz.png

ToZ: I replaced "url" with "img" in both image bbcodes to get them to display

Last edited by ToZ (2020-09-16 17:31:59)


MX 21.3 Wildflower
Xfce 4.18

Offline

#33 2020-09-26 20:26:20

misket
Member
Registered: 2020-09-26
Posts: 1

Re: Screenshots - 2020

eriefisher wrote:

XFCE with MX-18.3. Customizing before I wipe to upgrade. Clean

https://i.imgur.com/gCFKsC2.png

Hello, how can I make Whisker Menu Icon bigger than other icons in panel?
I cannot resize Whisker menu icon individually.

Offline

#34 2020-09-27 13:52:58

peter.48
Member
Registered: 2017-01-31
Posts: 124

Re: Screenshots - 2020

misket wrote:

Hello, how can I make Whisker Menu Icon bigger than other icons in panel?
I cannot resize Whisker menu icon individually.

You can simply make a higher panel for just one icon, and then another lower panel with all the rest...

Offline

#35 2020-09-28 23:35:32

dadoprom
Member
Registered: 2020-09-28
Posts: 1

Re: Screenshots - 2020

Love XFCE! Thank you!

Linux Mint 2020, on Thinkpad x250.

https://imgur.com/jcNzHEx

jcNzHEx.png

Offline

#36 2020-10-19 00:37:00

firstairbender
Member
From: Canada
Registered: 2020-08-28
Posts: 22

Re: Screenshots - 2020

Xfce-desktops-2020.png

Turns out a black screen is really the only wallpaper I ever needed

Last edited by firstairbender (2020-10-19 00:43:04)

Offline

#37 2020-10-20 19:16:37

pam547
Member
Registered: 2020-10-20
Posts: 6

Re: Screenshots - 2020

Hello,
Nothing else than Xfce.
gNrbpcl.jpg

Offline

#38 2020-10-27 17:56:48

ceh421
Member
Registered: 2020-10-18
Posts: 2

Re: Screenshots - 2020

Slackware arm 14.2 XFCE - Installed on Raspberry Pi4 Model B using Sarpi project method

screenshot_2020_10_27_rpi4_by_ceh421_de7nth9-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3siaGVpZ2h0IjoiPD03MjAiLCJwYXRoIjoiXC9mXC81YzU2YzNhOS05ZTQ5LTRjNzEtOTEwNy1mNmU1ZmVjYmVkOWFcL2RlN250aDktMmM0NjZjYWMtM2Q5ZS00ZGYxLTgwNDEtZjc5ZDY1YWUwZjNiLnBuZyIsIndpZHRoIjoiPD0xMjgwIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmltYWdlLm9wZXJhdGlvbnMiXX0.mtocSDm0SWz7uBXGdsJ3RlTG396a9t7UV3VLyII19eg


____________________________________________________________________________________

Slackware 14.2+Current XFCE / Conky - Installed on old convertable HP laptop

screenshot_2020_10_27_12_09_43_by_ceh421_de7nth5-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOiIsImlzcyI6InVybjphcHA6Iiwib2JqIjpbW3siaGVpZ2h0IjoiPD03MjAiLCJwYXRoIjoiXC9mXC81YzU2YzNhOS05ZTQ5LTRjNzEtOTEwNy1mNmU1ZmVjYmVkOWFcL2RlN250aDUtZDg0MGQxN2MtNmEzNi00NzAxLTk0NDQtYTk2MGQ2NWJiZDBhLnBuZyIsIndpZHRoIjoiPD0xMjgwIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmltYWdlLm9wZXJhdGlvbnMiXX0.3Hi1WUwubda69yGs9UvDV1PlO2zWNI6QMj7MN0dJG88

Offline

#39 2020-11-16 08:08:02

Valdo
Member
From: Brive La Gaillarde
Registered: 2018-10-06
Posts: 47

Re: Screenshots - 2020

Bonjour, voila le mien.


Capture-d-cran-2020

Val.

Last edited by Valdo (2020-11-16 08:12:08)


Windows is the most stable system in the world.
Bill GATES (Famous humorist)

Offline

#40 2020-11-27 09:25:02

h.wurst
Member
Registered: 2020-11-20
Posts: 16

Re: Screenshots - 2020

This is my Arch linux desktop with:

"xfce4" desktop
"plank" bottom-panel
"elementary-kde-blue" iconset

Bildschirmfoto-2020-11-27-10-17-22.png

Last edited by h.wurst (2020-12-02 08:41:07)

Offline

#41 2020-12-02 08:38:35

h.wurst
Member
Registered: 2020-11-20
Posts: 16

Re: Screenshots - 2020

bluebyt wrote:

Hello I just installed Archlinux xfce and it's working great!

Fullscreen
https://i.ibb.co/YcF9dFx/Screenshot-202 … -55-45.png

Does anybody know the name of this icon theme?
Screenshot-2020-01-05-17-55-45.png

Offline

#42 2020-12-02 11:54:50

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

Re: Screenshots - 2020

Nearing the end of this awful year, I thought I'd post something different. This is MX Fluxbox, with our version of fluxbox running over Xfce 4.14 using tint2 in a vertical position like we do for default in the flagship Xfce version of MX Linux. Dock is made and managed using our own mx-dockmaker, and is usually on autohide. Wallpaper is an original photo by a very talented user, and the conky is modified from "conkyglass" by BigRZA and comes in the 50-conky collection with all 3 MX versions (KDE is the third).
9NmvlSZ.png


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

Online

#43 2020-12-02 11:55:24

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

Re: Screenshots - 2020

h.wurst wrote:
bluebyt wrote:

Does anybody know the name of this icon theme?
https://i.ibb.co/YcF9dFx/Screenshot-202 … -55-45.png

You can see it in the output in the terminal window. It is the elementary icon theme.


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

#44 2020-12-02 17:35:48

h.wurst
Member
Registered: 2020-11-20
Posts: 16

Re: Screenshots - 2020

ToZ wrote:
h.wurst wrote:
bluebyt wrote:

Does anybody know the name of this icon theme?
https://i.ibb.co/YcF9dFx/Screenshot-202 … -55-45.png

You can see it in the output in the terminal window. It is the elementary icon theme.

ah... didnt saw that, thanks.
But i think the icons in the bottom panel are not from the elementary icon theme,
maybe these come from the panel itself. Any idea which bottom panel or icon theme that is?

Offline

#45 2021-01-05 02:58:16

matthewmx86
Member
Registered: 2021-01-05
Posts: 1

Re: Screenshots - 2020

Long time Xfce user love the DE, Arch Linux with default xfce4 install. Feeling retro today, my custom theme Redmond97 gtk3 theme and icon set.
screenshot

Last edited by matthewmx86 (2021-01-05 02:59:20)

Offline

Board footer

Powered by FluxBB