Page 51 of 88

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

Posted: 2016-10-16 11:09
by Head_on_a_Stick
Image

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

Posted: 2016-10-17 02:54
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

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

Posted: 2016-10-22 19:08
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

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

Posted: 2016-10-24 16:53
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

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

Posted: 2016-10-27 10:32
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

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

Posted: 2016-10-27 17:32
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

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

Posted: 2016-10-28 06:29
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 ;)

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

Posted: 2016-10-28 19:18
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?

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

Posted: 2016-10-28 19:27
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 :)

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

Posted: 2016-10-29 06:34
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

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

Posted: 2016-11-20 12:30
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/

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

Posted: 2016-11-22 19:16
by Linadian
@Head_on_a_Stick, you are a brave soul, lol. Nice to see you got as far as you did with 9front. :)

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

Posted: 2016-11-22 19:21
by bester69
Can anyone please, post some good and innovate design? :shock:

, Thanks

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

Posted: 2016-11-23 19:14
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/

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

Posted: 2016-11-23 20:17
by Ardouos
bester69 wrote:Can anyone please, post some good and innovate design?
Simplicity is elegance.

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

Posted: 2016-11-24 07:06
by Nili
Very nice HoaS, does screenfetch or neofetch work on that system? if you can find a way and bring some OS stats :)

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

Posted: 2016-11-24 07:56
by Head_on_a_Stick
Nili wrote:does screenfetch or neofetch work on that system?
No, I will have to try to write one in rc(1).

The scrot is showing the rio window manager and is *not* running an X server, the programs are drawing on the pixel display directly and there are no xft fonts or suchlike, it is more akin to a console session running a framebuffer:

https://en.wikipedia.org/wiki/Linux_framebuffer

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

Posted: 2016-11-24 08:11
by Nili
Thanks, yeah i read a little Wiki about Plan 9 and a bit framebuffer seeing your last scrots, It seems really interesting.
For older desktop as mine "Linux framebuffer" is a miracle. mpv app it is an ideal example for speed and practicality.

Cool, some OS info would be great to see :)

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

Posted: 2016-11-26 13:12
by debiman
HoaS, can you have media playback on that 9front install? namely video?

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

Posted: 2016-11-26 14:09
by Head_on_a_Stick
debiman wrote:can you have media playback on that 9front install? namely video?
Only by using their Linux emulation:

http://fqa.9front.org/fqa8.html#8.7.1

The systems' main intended purpose is for fileservers and the like, especially when operated over a distributed computing network -- the 9front.org website is run entirely on Plan 9/9front servers 8)