You are not logged in.
(I have cross-posted this on both MX and BunsenLabs Forums).
For those who are interested in having a version of BunsenLabs (Lithium) running on MX19, I have begun work on that task. It is doubtful that I will ever 'fully' complete the task without the help of others. I will be able to build something to my liking but probably not to yours without your inut and assistance. If you are interested in helping, you can jump right in and contribute in this thread.
By way of status update, thus far I have installed and implemented a basic version of the current pre-alpha (experimental) BunsenLabs materials (per their guidance) on MX19b3. Images are available here:
To create a version on your MX19b3 installation, add this line to your apt sources (/etc/apt/sources.list.d/various.list) :
##BunsenLabs Experimental
deb https://kelaino.bunsenlabs.org/~johnraff/debian lithium main
To build a version of BunsenLabs (Lithium- experimental) on MX19b3 you simply need to enter the following commands in terminal mode:
wget https://kelaino.bunsenlabs.org/~johnraff/helium-dev.asc
sudo cp helium-dev.asc /etc/apt/trusted.gpg.d/
sudo apt-get update
sudo apt-get install --no-install-recommends bunsen-meta-all
Among the Major tasks that need to be accomplished are:
- removal of the few systemd dependencies. On MX they probably do not need to be removed if you run using systemd.
- thorough testing for breakage(s) needs to be conducted. I have just begun those (for the features I use).
- transition to and testing on the released version of MX19
antiX19 Note:
I may or may not undertake the same task for antiX19. My initial testing indicates that moving BunsenLabs Lithium to antiX19 may be a much larger task and more difficult to achieve than it is on MX19b3.
I think it would be much better if an antiX expert wants to lead that charge. For now at least, I'll leave that for others.
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline
BunsenLabs is now running on antiX19b3. It booted cleanly and is operational. I needed to clean off all the standard desktops, slim and replace the display manager with lightdm. Tada!
I'll begin working (really!) on building an antiX19 version of BunsenLabs Lithium as well as the one for MXLinux19b3.
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline
Details for the installs (tutorial) on MX & antiX are available here:
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline
BLaM#! BunsenLabs (Lithium) on MXLinux or antiX announcement.
I hope people enjoy it as much as I enjoyed building it... have fun!
http://eirenicon.org/2019/10/10/blam-openbox/
Last edited by manyroads (2019-10-10 15:39:32)
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline
Moderator edit - Topics moved and merged.
@manyroads, not because the topic is unrelated to BL Lithium development, but because it is tangential (and a bit spammy). Feel free to discuss your project in this dedicated thread.
No, he can't sleep on the floor. What do you think I'm yelling for?!!!
Offline
No problem at all... I saw other attempts to move stuff around and did not know where they needed to reside. I am happy to have them consolidated in one place, it's easier for me, too.
Thanks for all your efforts.
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline
Nice, thanks for your support and contributions!
No, he can't sleep on the floor. What do you think I'm yelling for?!!!
Offline
My pleasure. I enjoy contributing.
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline
Here is an image of Lithium on mx, with yad logout and new background.
https://t35.pixhost.to/thumbs/313/123895936_lithium-yad-logout-on-mx19b3.png
Hey, this looks nice. I would love to have a closer view at this yad-logout script. Would you mind sharing?
Naik --greetz
"Kaum macht [Mensch]* es richtig, funktioniert es sofort!"
BL-Kitchen Codeberg
Offline
You may find all my scripts, tutorials, and dotfiles at: http://eirenicon.org
As for the Yad Logout...here's the script:
#! /bin/bash
action=$(yad --width 300 --entry --title "System Logout" \
--image=gnome-shutdown \
--button="Switch User:2" \
--button="gtk-ok:0" --button="gtk-close:1" \
--text "Choose action:" \
--entry-text \
"Power Off" "Reboot" "Suspend" "Logout")
ret=$?
[[ $ret -eq 1 ]] && exit 0
if [[ $ret -eq 2 ]]; then
gdmflexiserver --startnew &
exit 0
fi
case $action in
Power*) cmd="sudo /sbin/poweroff" ;;
Reboot*) cmd="sudo /sbin/reboot" ;;
Suspend*) cmd="sudo pm-suspend" ;;
Logout*)
case $(wmctrl -m | grep Name) in
*Openbox) cmd="openbox --exit" ;;
*bspwm) cmd="bspc quit" ;;
*Metacity) cmd="gnome-save-session --kill" ;;
*) exit 1 ;;
esac
;;
*) exit 1 ;;
esac
eval exec $cmd
Last edited by manyroads (2019-10-14 19:56:03)
Pax vobiscum,
Mark Rabideau - https://many-roads.com https:/eirenicon.org
i3wm, dwm, hlwm on sid/ arch ~ Reg. Linux User #449130
"For every complex problem there is an answer that is clear, simple, and wrong." H. L. Mencken
Offline