The officially official Devuan Forum!

You are not logged in.

#551 2023-01-24 16:11:11

genxr
Member
Registered: 2022-12-08
Posts: 5  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:

https://i.postimg.cc/jnn2pH8X/20230120-21h23m04s-grim.png

Work in progress smile

(foot is the name of the terminal)

Now, this is cool. Could you share the whole code of this? I'd like to to something similar.

Offline

#552 2023-01-24 17:46:56

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Show your desktop (rebooted)

genxr wrote:

Could you share the whole code of this?

It's actually visible in the screenshot. Here it is again, I haven't worked on it since then though:

#!/bin/sh
# SPDX-License-Identifier: GPL-3.0-only
clear
play() {
   foot -e ffplay -nodisp "$@"
}
while : ; do
   channel=$(
   whiptail --nocancel --notags --title "My Crappy Radio Player (text)" --menu "Select channel" 16 100 9 \
      "1" "Metal/Rock Radio!" \
      "2" "Progressive Metal!" \
      "3" "Symphonic Metal!" \
      "4" "Alternative Rock!" \
      "5" "Grunge Rock!" \
      "6" "Classic Rock!" \
      "7" "Exit" 3>&2 2>&1 1>&3
   )
   case "$channel" in
      1) play https://kathy.torontocast.com:2800/ ;;
      2) play http://23.237.150.98:8512/ ;;
      3) play https://bob.hoerradar.de/radiobob-symphmetal-mp3-hq ;;
      4) play https://ad-im-cmg.streamguys1.com/atl971hd2/atl971hd2-sgplayer-aac ;;
      5) play http://bigrradio.cdnstream1.com/5200_48 ;;
      6) play http://oom-cmg.streamguys1.com/orl989/orl989-sgplayer-aac ;;
      7) exit
   esac
done
exit

That uses whiptail but that can be replaced by dialog with no other changes if you prefer that.

EDIT: for Devuan replace foot with x-terminal-emulator, which should work in all systems regardless of the preferred terminal.

And here's a dwm scrot to stay on topic:

2023-01-24-174826-1920x1080-scrot.png

Last edited by Head_on_a_Stick (2023-01-24 17:53:52)


Brianna Ghey — Rest In Power

Offline

#553 2023-01-25 00:54:59

andyprough
Member
Registered: 2019-10-19
Posts: 327  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:

a dwm scrot

The only thing better than dwm on devuan is xcowsay on dwm on devuan
dwmisbetter.jpg

Offline

#554 2023-01-25 07:06:20

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Show your desktop (rebooted)

^ Vanilla dwm with no status line? How quaint tongue


Brianna Ghey — Rest In Power

Offline

#555 2023-01-25 08:01:17

andyprough
Member
Registered: 2019-10-19
Posts: 327  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:

^ Vanilla dwm with no status line? How quaint tongue

I've done plenty of patching and ricing and tinkering in the past, but eventually I found I was happiest and most productive with vanilla. It does have slstatus running with date and time though, it's just that the screenshoting program was on monitor #2 so this wasn't the monitor in focus. And I like having a systray for a couple of items I occasionally use, so I usually do the systray patch. Not much else. Picom for terminal transparency so I can see the pretty wallpapers. I like your setup though - nice colors, nice layout, very pleasant and comfortable looking. I don't know why you would spend your time trying so many other desktops and wm's when you have something so nice already.

Offline

#556 2023-01-25 19:52:52

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Show your desktop (rebooted)

The attachaside patch needs updating for v6.4 and I just can't be bothered. EDIT: a systray? In dwm? Heresy!

Last edited by Head_on_a_Stick (2023-01-25 19:53:18)


Brianna Ghey — Rest In Power

Offline

#557 2023-01-25 20:29:42

andyprough
Member
Registered: 2019-10-19
Posts: 327  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:

The attachaside patch needs updating for v6.4 and I just can't be bothered. EDIT: a systray? In dwm? Heresy!

I love my little flameshot systray button. I'm not much of a suckless purist, in fact I abhor st and surf, but nearly everything about vanilla dwm is perfect for the way I work.

attachaside is for people whose brains are backward.

Offline

#558 2023-01-26 13:03:16

MiyoLinux
Member
Registered: 2016-12-05
Posts: 1,323  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:

https://i.postimg.cc/jnn2pH8X/20230120-21h23m04s-grim.png

Work in progress smile

(foot is the name of the terminal)

cool

Stinkin' fantastic HoaS! smile

You better know that I'm going to crappin' fork your crappy fork of My Crappy Radio Player... wink

I've already made some changes to the code to suit my personal taste; such as, changing it from whiptail to dialog, changing the terminal to xterm and having xterm automatically iconified when it opens to play a radio station.

2023-01-26-074252-1366x768-scrot.png

However, I'm caught betwixt a crux of decisions since you went all GPL 3.0-only on me after I made it Public Domain...

You stinkin' stinker! HAHAHAHAHAHA!!! tongue

To keep on topic, this is a screenshot of MiyoLinux - Saluta Semplice (based on Devuan Chimaera) smile


I have been Devuanated, and my practice in the art of Devuanism shall continue until my Devuanization is complete. Until then, I will strive to continue in my understanding of Devuanchology, Devuanprocity, and Devuanivity.

Veni, vidi, vici vdevuaned. I came, I saw, I Devuaned. wink

Offline

#559 2023-01-26 16:07:42

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Show your desktop (rebooted)

MiyoLinux wrote:

changing the terminal to xterm

Why not use x-terminal-emulator instead? That way it will use whatever emulator is set as the default alternative. Some people don't like xterm and it won't even be installed in some systems.

Back on topic: got bored of fighting with finit so switched to runit-init instead:

20230126-15h48m17s-grim.png

Made a polkid-dummy package 'cos I don't need that shit on my box.


Brianna Ghey — Rest In Power

Offline

#560 2023-01-26 16:15:52

MiyoLinux
Member
Registered: 2016-12-05
Posts: 1,323  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:

Why not use x-terminal-emulator instead?

Well, because there are a few people who like MiyoLinux (and the crappy stuff I offer), but they don't use Devuan/Debian. Plus, xterm can be made quite beautiful with a little bit'a .Xresources. wink

Thanks for doing what you did HoaS...I've never tried building a terminal-based app. You made it easy. smile


I have been Devuanated, and my practice in the art of Devuanism shall continue until my Devuanization is complete. Until then, I will strive to continue in my understanding of Devuanchology, Devuanprocity, and Devuanivity.

Veni, vidi, vici vdevuaned. I came, I saw, I Devuaned. wink

Offline

#561 2023-02-05 00:57:23

aitor
Member
From: basque country
Registered: 2016-12-03
Posts: 219  
Website

Re: Show your desktop (rebooted)


If you work systematically, things will come by itself (Lev D. Landau)

Offline

#562 2023-02-05 02:10:10

zapper
Member
Registered: 2017-05-29
Posts: 835  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:
MiyoLinux wrote:

changing the terminal to xterm

Why not use x-terminal-emulator instead? That way it will use whatever emulator is set as the default alternative. Some people don't like xterm and it won't even be installed in some systems.

Back on topic: got bored of fighting with finit so switched to runit-init instead:

https://i.postimg.cc/6TFwW6Mh/20230126-15h48m17s-grim.png

Made a polkid-dummy package 'cos I don't need that shit on my box.

Better idea, instead of xterm, most people should use sakura.

right clicking while sakura is open, gives you the only other options people really use:

Options gives you quite a few, but go to  Options and  then more you can get the scrollbar back . smile

And before options, after just right clicking, copy, paste and exit are already there as well as full screen.

Ignore if you wish, but of all the lightweight terminal emulators, sakura is very much what i would consider, the jwm of terminal emulators.

Very light, but has most of the functionality I think is needed, without sucking a huge crapton of resources for no reason.


Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term  If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Peace Be With us All!

Offline

#563 2023-02-05 10:11:20

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Show your desktop (rebooted)

zapper wrote:

sakura

lol. No.

Firstly, sakura is so shit that it isn't even available from the official Arch repositories. Secondly, the configuration options are far too minimal — it's not even possible to set the complete colourscheme from those stupid menus, only a limited selection of pre-set themes are available and they're all rubbish. And thirdly it's a complete bloat monster.

Look:

20230205-09h56m59s-grim.png

So sakura's using five times as much RAM compared to either xterm or foot (my preferences for X and Wayland, respectively). Seems to me that it is indeed "sucking a huge crapton of resources for no reason".

Anyway I prefer xterm because it's the emulator supplied for the OpenBSD base system and so benefits from their extensive security audits. No other terminal emulator is formally audited in this way.

And please provide a screenshot of your desktop when posting in this thread. Your flagrant violation of thread topics and multiple attempts to derail any thread in which you post really is getting on my tits.


Brianna Ghey — Rest In Power

Offline

#564 2023-02-14 18:19:42

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Show your desktop (rebooted)

Chimera Linux:

Screenshot-from-2023-02-14-18-18-14.png


Brianna Ghey — Rest In Power

Offline

#565 2023-02-14 20:49:41

andyprough
Member
Registered: 2019-10-19
Posts: 327  

Re: Show your desktop (rebooted)

Why would a new distro that strives to be "simple", "clean", and to "eliminate legacy cruft" use gnome I wonder?

Musl would be nice except Void's been doing it for years so we already know there's a bunch of important programs that won't work right with it. dinit is a very nice touch.

--------------------------------------------------------------

Big news, I'm really stepping up my dwm ricing game - I changed my wallpaper again:
mooing5.jpg

Offline

#566 2023-02-14 21:01:30

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: Show your desktop (rebooted)

andyprough wrote:

Why would a new distro that strives to be "simple", "clean", and to "eliminate legacy cruft" use gnome I wonder?

Chimera FAQ wrote:

Why choose GNOME as the default desktop?

There are two major desktops that provide a properly functional Wayland implementation, and that is GNOME and KDE. Compared to KDE, GNOME is much smaller and simpler to build (and less time/resource-consuming), and its Wayland support feels more stable. Additionally, it has consistent and well-defined UX. GNOME is also more portable than KDE, primarily due to relying on WebKit rather than a Chromium derivative as its web browser engine of choice. The founder of Chimera also uses GNOME as their daily driver.

Other desktops usually do not meet the Wayland requirement, and tend to have UI/UX that is way more all over the place. Simpler WMs and compositors also tend to be much more of a “do it yourself” thing, and tend to target niches that only suit a relatively small number of people (e.g. tiling). The default desktop in Chimera should be comprehensive and unassuming.

Wayland is simpler than X so that choice is obvious.

andyprough wrote:

Musl would be nice except Void's been doing it for years so we already know there's a bunch of important programs that won't work right with it.

There are ways to run glibc-based programs in Alpine (and hence Chimera):

https://wiki.alpinelinux.org/wiki/Runni … c_programs

andyprough wrote:

dinit is a very nice touch

It's lovely. Most of the features offered by systemd but much more modular and minimal. Easy to use too.

See https://github.com/davmac314/dinit/blob … COMPARISON for a comparison with other init systems.

andyprough wrote:

I changed my wallpaper again

You fancy bastard tongue

I made my own wallpaper for my Arch box so the background matches the bar & terminal:

20230212-16h16m30s-grim.png


Brianna Ghey — Rest In Power

Offline

#567 2023-02-18 12:55:13

Nili
Member
From: $HOME/♫♪
Registered: 2016-12-01
Posts: 230  
Website

Re: Show your desktop (rebooted)

52695159332_6a0dc7b57a_m.jpg
Last scrot for the Plasma 5.* series.
Thanks to l4k1 for Wings-Dark-Global that made KDE Plasma even more accomplished.


openSUSE Tumbleweed KDE/Wayland

♫♪ Elisa playing...
Damascus Cocktail ♪ Black Reverie ♪ Dye the sky.

Offline

#568 2023-03-29 19:54:13

zapper
Member
Registered: 2017-05-29
Posts: 835  

Re: Show your desktop (rebooted)

Head_on_a_Stick wrote:
zapper wrote:

sakura

lol. No.

Firstly, sakura is so shit that it isn't even available from the official Arch repositories. Secondly, the configuration options are far too minimal — it's not even possible to set the complete colourscheme from those stupid menus, only a limited selection of pre-set themes are available and they're all rubbish. And thirdly it's a complete bloat monster.

Look:

https://i.postimg.cc/GHGfdZ2C/20230205-09h56m59s-grim.png

How much cpu does xterm use though compared to Sakura, that is the real test.

If the cpu usage is way more than most others, I might understand your thinking.

RAM to me is a non-issue, but CPU, that actually means something.

wink

"my And please provide a screenshot of your desktop when posting in this thread. Your flagrant violation of thread topics and multiple attempts to derail any thread in which you post really is getting on my tits."

Btw, I thought you liked my flagrant violation of thread topics and mulitple attempts to derail your threads. 

Also, I don't derail all threads, otherwise my account would have been suspended multiple times or more and also, people wouldn't want to help me ever on anything.

Btw, how do you upload an image on here as a last edit?
.

Last edited by zapper (2023-03-29 19:56:58)


Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term  If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Peace Be With us All!

Offline

#569 2023-03-29 20:05:54

zapper
Member
Registered: 2017-05-29
Posts: 835  

Re: Show your desktop (rebooted)

Here is a wallpaper for you @headonastick

Does this satisfy you? big_smile

Edit: How do I make it appear on the page like other people's?

Last edited by zapper (2023-03-29 20:12:08)


Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term  If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Peace Be With us All!

Offline

#570 2023-03-29 20:48:16

andyprough
Member
Registered: 2019-10-19
Posts: 327  

Re: Show your desktop (rebooted)

zapper wrote:

Here is a wallpaper for you @headonastick

HOAS is gone, Zap. He left to find a new group of Linux users to bedazzle with his sed and awk demonic incantations, I would imagine.

Don't stare at your wallpaper too long, that one could give a person seizures from the looks of it.

Offline

#571 2023-03-31 15:09:29

zapper
Member
Registered: 2017-05-29
Posts: 835  

Re: Show your desktop (rebooted)

andyprough wrote:
zapper wrote:

Here is a wallpaper for you @headonastick

HOAS is gone, Zap. He left to find a new group of Linux users to bedazzle with his sed and awk demonic incantations, I would imagine.

Don't stare at your wallpaper too long, that one could give a person seizures from the looks of it.

So bizzaro


Freedom is never more than one generation away from extinction. Feelings are not facts
If you wish to be humbled, try to exalt yourself long term  If you wish to be exalted, try to humble yourself long term
Favourite operating systems: Hyperbola Devuan OpenBSD
Peace Be With us All!

Offline

#572 2023-04-05 16:17:22

stopAI
Member
Registered: 2023-04-04
Posts: 124  

Re: Show your desktop (rebooted)

Awesome wm in Devuan Chimaera

2023-04-05-18-22-cleaned.png

2023-04-05-17-41-cleaned.png

Offline

#573 2023-05-01 09:18:10

soren
Member
Registered: 2023-04-30
Posts: 80  

Re: Show your desktop (rebooted)

I am a dwm, st, dmenu ,spacefm user. Some of the best base free software for casual linux/gnu users imo, building up from these tools is a real pleasure.

2023-05-01-191307-1920x1200-scrot.png

Offline

#574 2023-06-29 21:31:45

Tatwi
Member
From: Canada
Registered: 2018-10-24
Posts: 71  
Website

Re: Show your desktop (rebooted)

Daedalus, Xfce with Cameo-ALU-Dark-1.5.1 theme, Aguqlemon borders ( from old deb package xfwm4-themes_4.10.0-2), and Deepsea icons. Geany theme is Himbeere, with some syntax customizations I've been using for a decade... where'd the time go??!! smile

This is my fav way to GNU/Linux!

Xfcet

That said, having slept on it, ideally I would like a Mac OS X 10.4 Tiger theme. I love those scrollbars and the skeuomorphism! I may take a crack at making one.

Last edited by Tatwi (2023-07-01 14:53:59)

Offline

#575 2023-07-13 11:57:39

stopAI
Member
Registered: 2023-04-04
Posts: 124  

Re: Show your desktop (rebooted)

Sawfish in Devuan Chimaera

Screenshot-2023-07-13-14-55-57.pngnot all keys are working on my laptop

Offline

Board footer