Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

What does your non-Debian desktop look like?

Off-Topic discussions about science, technology, and non Debian specific topics.
Message
Author
No_windows
Posts: 505
Joined: 2015-08-05 03:03

Re: What does your non-Debian desktop look like?

#1001 Post by No_windows »

Head_on_a_Stick wrote:Image

Wasn't sure where to post this...
:?
What's going on here..... is one a VM in a small window?

How did you get Debian install with only 207 packages? My minimal install is approaching 700! Is it command line only?

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1002 Post by Head_on_a_Stick »

No_windows wrote:What's going on here..... is one a VM in a small window?
Nah, just installing Debian sid to a btrfs subvolume and in the middle of configuring it via `chroot`, it's from a minimal `debootstrap` so it didn't even have a kernel at that stage, hence the small package number -- I've since booted it and installed the entire xorg metatpackage so it's probably way over 500 by now...
:mrgreen:
deadbang

User avatar
Nili
Posts: 441
Joined: 2014-04-30 14:04
Location: $HOME/♫♪
Has thanked: 5 times
Been thanked: 3 times

Re: What does your non-Debian desktop look like?

#1003 Post by Nili »

No_windows wrote:How did you get Debian install with only 207 packages? My minimal install is approaching 700! Is it command line only?
According on my netinst investigation from 2015
openSUSE Tumbleweed KDE/Wayland

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

No_windows
Posts: 505
Joined: 2015-08-05 03:03

Re: What does your non-Debian desktop look like?

#1004 Post by No_windows »

Nili wrote:
No_windows wrote:How did you get Debian install with only 207 packages? My minimal install is approaching 700! Is it command line only?
According on my netinst investigation from 2015
Thanks for link links. I may start another thread for this subject. I've gotten my package count down to less than 650, but feel I probably could take it a bit further.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1005 Post by Head_on_a_Stick »

Gratuitous wallpaper scrot showing the rather lovely jgmenu, which is set to pop up when I left click the status box on the far right of the panel:

Image

https://github.com/johanmalm/jgmenu

The desktop is my usual Alpine Linux/dwm combination.
deadbang

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1006 Post by Head_on_a_Stick »

Image
deadbang

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: What does your non-Debian desktop look like?

#1007 Post by GarryRicketson »

Looks nice, I am logged in with OpenBsd 6.0 right now, myself,
but don't have any screen shots, maybe tomorrow,....I'm tired.

Code: Select all

 $ uname -a
OpenBSD openbsd-garry.my.domain 6.0 GENERIC#1917 i386
 
=============edited==============
Here it is:
Image

Edited again:
Wow, I am really liking this newer version of OpenBsd, been using it
now all day, and it is really nice,.... :D
Here is one more, have everything I use working now,
so it is kind of "busy"
Image

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1008 Post by Head_on_a_Stick »

^ Nice work Garry :)

I have managed to compile my custom dwm desktop properly (ie, from the ports tree rather than the lazy git method) after following this advice.

(Very) Clean:

Image

Dirty:

Image

I am using `xsetroot` & `date` to set the status box on the right-hand-side of the panel, here is my ~/.xinitrc (plus comments):

Code: Select all

synclient vertedgescroll=1 verttwofingerscroll=0 horizedgescroll=1 horizscrolldelta=10 # configure touchpad
xset s 300 -dpms # screensaver
xsetroot -solid "#002b36" # "wallpaper"
while true; do xsetroot -name "$(date +"%A %B %d, %T")"; sleep 1; done & # status box
exec dwm
I don't use xdm(1) but instead have this line in ~/.profile to launch the desktop automatically after a console login:

Code: Select all

[[ -z $DISPLAY ]] && exec startx
deadbang

User avatar
GarryRicketson
Posts: 5644
Joined: 2015-01-20 22:16
Location: Durango, Mexico

Re: What does your non-Debian desktop look like?

#1009 Post by GarryRicketson »

I don't use xdm(1) but instead have this line in ~/.profile to launch the desktop automatically after a console login:

Code: Select all

[[ -z $DISPLAY ]] && exec startx
I need to look into trying that,


Image

OpenBsd

User avatar
Nili
Posts: 441
Joined: 2014-04-30 14:04
Location: $HOME/♫♪
Has thanked: 5 times
Been thanked: 3 times

Re: What does your non-Debian desktop look like?

#1010 Post by Nili »

I use this @user .profile --> skiping startX MOTD

Code: Select all

if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
sleep 1s && exec startx >/dev/null 2>&1
fi
On Debian, I think may work on BSD aswell.

Edit: startX on tty1
openSUSE Tumbleweed KDE/Wayland

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

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1011 Post by Head_on_a_Stick »

Nili wrote:I think may work on BSD aswell
Yes, with a small modification it does -- thanks Nili :)

Here's my OpenBSD version:

Code: Select all

[[ -z $DISPLAY && $(tty) = /dev/ttyC0 ]] && exec startx
I only had room for one line :P
deadbang

User avatar
Nili
Posts: 441
Joined: 2014-04-30 14:04
Location: $HOME/♫♪
Has thanked: 5 times
Been thanked: 3 times

Re: What does your non-Debian desktop look like?

#1012 Post by Nili »

Actually thank you HoaS, first time a year ago I've used your code with a lil modified -- skiping MOTD.

So thanks you too ;)
openSUSE Tumbleweed KDE/Wayland

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

User avatar
debiman
Posts: 3063
Joined: 2013-03-12 07:18

Re: What does your non-Debian desktop look like?

#1013 Post by debiman »

Nili wrote:I use this @user .profile --> skiping startX MOTD

Code: Select all

if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
sleep 1s && exec startx >/dev/null 2>&1
fi
On Debian, I think may work on BSD aswell.

Edit: startX on tty1
why sleep 1?

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1014 Post by Head_on_a_Stick »

^ Yeah, I was wondering about that too.

To drag this back on topic...

OpenBSD have managed to update their Dungeon Crawl port to the latest 0.18 version, it had been stuck on 0.15 for a while:

Image

I love this game :)
deadbang

User avatar
Nili
Posts: 441
Joined: 2014-04-30 14:04
Location: $HOME/♫♪
Has thanked: 5 times
Been thanked: 3 times

Re: What does your non-Debian desktop look like?

#1015 Post by Nili »

debiman wrote:why sleep 1?
Nothing important, actually i do not remember why I set time on startx startup.
Perhaps I wanted to read more about startx Motd before turning OFF or i could have set anything else with time. Really i don't remember.

Thanks for the notice. I'll make a change here.

EDITED:
Recalled why i set the time 1 on startx :) I remember wanted to make a code similar to HoaS

Code: Select all

[[ -z $DISPLAY && $(tty) = /dev/tty1 ]] && exec startx >/dev/null 2>&1
...But doesn't worked for me then...
At this point begin a infinity loop "exit / join" all time very fast for my WM which doesn't give me a change to stop it with "CTRL+C halt".
So, with +1sec time i have a chance to use CTRL+C stoping the loop and fix the profile code.

Nili
openSUSE Tumbleweed KDE/Wayland

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

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1016 Post by Head_on_a_Stick »

OK, you will have to bear with me here 'cos I haven't figured out the networking and the suggested screenshot technique doesn't seem to work for me but here is a shot of my laptop screen running the 9front operating system:

Image

The stats system monitor is in the top left with the mothra web browser running to the right and an acme & terminal window open below.

It is using the rio window system which directly manipulates the pixel display without the need for an X server or any of that nonsense.

8)

More on this fascinating OS here:

http://9front.org/
deadbang

User avatar
Linadian
Posts: 490
Joined: 2013-12-20 15:25
Location: In a systemd free distro

Re: What does your non-Debian desktop look like?

#1017 Post by Linadian »

@Head_on_a_Stick, you are a brave soul, lol. Nice to see you got as far as you did with 9front. :)
Linux Registered User 533946

User avatar
bester69
Posts: 2072
Joined: 2015-04-02 13:15
Has thanked: 24 times
Been thanked: 14 times

Re: What does your non-Debian desktop look like?

#1018 Post by bester69 »

Can anyone please, post some good and innovate design? :shock:

, Thanks
bester69 wrote:STOP 2030 globalists demons, keep the fight for humanity freedom against NWO...

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: What does your non-Debian desktop look like?

#1019 Post by Head_on_a_Stick »

@bester69, please don't troll this thread, post some *buntu scrots instead or something...

I got my 9front desktop working properly:

Image

It is awesome \o/
deadbang

User avatar
Ardouos
Posts: 1075
Joined: 2013-11-03 00:30
Location: Elicoor II
Has thanked: 1 time
Been thanked: 4 times

Re: What does your non-Debian desktop look like?

#1020 Post by Ardouos »

bester69 wrote:Can anyone please, post some good and innovate design?
Simplicity is elegance.
There is only one Debian | Do not break Debian | Stability and Debian | Backports

⢀⣴⠾⠻⢶⣦⠀
⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system
⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org
⠈⠳⣄⠀

Post Reply