No change, but thanks. Maybe @dolphin_oracle has a solution?Jerry3904 wrote: Thu Sep 25, 2025 9:55 am I tried that but perhaps placed the flag in first position. Will look again,, thanks.
MX 25 Beta 1 Feedback thread
Re: MX 25 Beta 1 Feedback thread
Production: MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: MX-25 Fluxbox, ThinkPad X1 Carbon gen 9 with i7
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Personal: MX-25 Fluxbox, ThinkPad X1 Carbon gen 9 with i7
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
-
- Posts: 58
- Joined: Sat Apr 17, 2021 2:20 pm
Re: MX 25 Beta 1 Feedback thread
Here is the output for the brave-browser command:Adrian wrote: Thu Sep 25, 2025 8:12 amI see no issues here, can you elaborate? Is it not starting? What does it say if you type in konsole: brave-browser?IoannisTsoulos wrote: Thu Sep 25, 2025 2:13 am Also, the brave browser does not work any more after switching to wayland
Can you provide QSI, did you install nvidia driver?
brave-browser
[5048:5048:0925/180114.379524:ERROR:dbus/object_proxy.cc:573] Failed to call method: org.kde.KWallet.isEnabled: object_path= /modules/kwalletd6: org.freedesktop.DBus.Error.NoReply: Message recipient disconnected from message bus without replying
[5048:5048:0925/180114.379858:ERROR:components/os_crypt/sync/kwallet_dbus.cc:113] Error contacting kwalletd6 (isEnabled)
[5048:5048:0925/180114.380134:ERROR:dbus/object_proxy.cc:573] Failed to call method: org.kde.KLauncher.start_service_by_desktop_name: object_path= /KLauncher: org.freedesktop.DBus.Error.ServiceUnknown: The name org.kde.klauncher was not provided by any .service files
[5048:5048:0925/180114.380143:ERROR:components/os_crypt/sync/kwallet_dbus.cc:82] Error contacting klauncher to start kwalletd6
[5048:5048:0925/180114.577934:ERROR:dbus/object_proxy.cc:573] Failed to call method: org.kde.KWallet.close: object_path= /modules/kwalletd6: org.freedesktop.DBus.Error.NoReply: Message recipient disconnected from message bus without replying
[5048:5048:0925/180114.577960:ERROR:components/os_crypt/sync/kwallet_dbus.cc:408] Error contacting kwalletd6 (close)
[5048:5048:0925/180114.793421:ERROR:components/dbus/xdg/request.cc:169] Request ended (non-user cancelled).
The application starts, but I can not open any url. It seems to not responding. The application works fine in X11 environment
Re: MX 25 Beta 1 Feedback thread
It works here (I do see similar messages in terminal) so not sure what is going on, I guess use Xorg if that works for you, I don't think I can test and figure out the issue if I cannot replicate.
Re: MX 25 Beta 1 Feedback thread
siamhie wrote: Thu Sep 25, 2025 9:36 amI think you need to start nitrogen with the options in the startup file?Jerry3904 wrote: Thu Sep 25, 2025 8:47 amNo, that appears to have no effect. Maybe we need to use the flag somewhere else?Jerry3904 wrote: Thu Sep 25, 2025 6:53 am I asked that during the development phase, thanks for bringing it up again. If it makes no difference with the other wallpapers I would like to see it enabled. Reading man nitrogen, it seems like this change to ~/.config/nitrogen/nitrogen.cfg might work:Code: Select all
[geometry] posx=366 posy=132 sizex=1110 sizey=923 [nitrogen] view=icon set-scaled=true recurse=true sort=rtime icon_caps=false dirs=/usr/share/backgrounds;/home/jb/.fluxbox/backgrounds;
Code: Select all
--set-scaled
Code: Select all
nitrogen --restore --set-scaled
@Jerry3904 @chrispop99
startup file currently has this
Code: Select all
#restore from saved background if exists and nitrogen installed
if [ -x "/usr/bin/nitrogen" ]; then
if [ -e "$HOME/.config/nitrogen/bg-saved.cfg" ]; then
(sleep 1; nitrogen --restore & )
else
# set default background
(sleep 1; nitrogen --set-auto /usr/share/backgrounds/default25.png)
fi
fi
Code: Select all
#restore from saved background if exists and nitrogen installed
if [ -x "/usr/bin/nitrogen" ]; then
if [ -e "$HOME/.config/nitrogen/bg-saved.cfg" ]; then
(sleep 1; nitrogen --restore & )
else
# set default background
(sleep 1; nitrogen --set-scaled /usr/share/backgrounds/default25.png)
fi
fi
+++
Last edited by Melber on Thu Sep 25, 2025 11:36 am, edited 1 time in total.
- dolphin_oracle
- Developer
- Posts: 22855
- Joined: Sun Dec 16, 2007 12:17 pm
Re: MX 25 Beta 1 Feedback thread
yes.
in the .fluxbox/startup file change this:
Code: Select all
#get last background selected
#~/.fehbg
#restore from saved background if exists and nitrogen installed
if [ -x "/usr/bin/nitrogen" ]; then
if [ -e "$HOME/.config/nitrogen/bg-saved.cfg" ]; then
(sleep 1; nitrogen --restore & )
else
# set default background
(sleep 1; nitrogen --set-auto /usr/share/backgrounds/default25.png)
fi
fi
Code: Select all
#get last background selected
#restore from saved background if exists and nitrogen installed
if [ -x "/usr/bin/nitrogen" ]; then
if [ -e "$HOME/.config/nitrogen/bg-saved.cfg" ]; then
(sleep 1; nitrogen --restore & )
else
# set default background
(sleep 1; nitrogen --set-scaled /usr/share/backgrounds/default25.png)
fi
fi
the way that works, --set-scaled is only explicitly used for the default background, and even then only if the bg-saved.cfg folder does not exist. the config file will take over from there when bg-saved.cfg exists.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/
-
- Posts: 58
- Joined: Sat Apr 17, 2021 2:20 pm
Re: MX 25 Beta 1 Feedback thread
I have some strange issues in X11. The mouse clicks may times seem to be ignored by the system and the smplayer has some lags to play videosAdrian wrote: Thu Sep 25, 2025 11:12 am It works here (I do see similar messages in terminal) so not sure what is going on, I guess use Xorg if that works for you, I don't think I can test and figure out the issue if I cannot replicate.
Re: MX 25 Beta 1 Feedback thread
I see an additional nvidia related boot option mentioned here https://wiki.debian.org/NvidiaGraphicsD ... odesettingIoannisTsoulos wrote: Thu Sep 25, 2025 12:22 am .
.
.
Here are my boot options
BOOT_IMAGE=/boot/vmlinuz-6.12.48+deb13-amd64 root=UUID=121a82e6-02c9-4580-9ff4-f4e1ec71dbd2 ro quiet splash nvidia-drm.modeset=1
Code: Select all
nvidia-drm.fbdev=1
Re: MX 25 Beta 1 Feedback thread
Thanks--just finishing mx-fluxbox changes so will test and push later.
Production: MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: MX-25 Fluxbox, ThinkPad X1 Carbon gen 9 with i7
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Personal: MX-25 Fluxbox, ThinkPad X1 Carbon gen 9 with i7
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Re: MX 25 Beta 1 Feedback thread
Before I send mx-fluxbox up, I received a message that we have not enabled spice-vdagent in fluxbox. I made no such decision so I need to ask: is its absence commission (intentional) or omission (accidental)? If the latter, can I just paste in the stanza in 23.6 startup again?
Thanks.
----------
Oh, and can picom be made available for MX-23 -- wrote only mx-25 in the Wiki article. picom is installed and active by default in 23.6
Code: Select all
# start spice-vdagent in KVM/Qemu
if [ -x /usr/bin/spice-vdagent ]; then
pidof -q spice-vdagentd && /usr/bin/spice-vdagent
fi
----------
Oh, and can picom be made available for MX-23 -- wrote only mx-25 in the Wiki article. picom is installed and active by default in 23.6
Production: MX-23 Xfce, AMD FX-4130 Quad-Core, GeForce GT 630/PCIe/SSE2, 16 GB, SSD 120 GB, Data 1TB
Personal: MX-25 Fluxbox, ThinkPad X1 Carbon gen 9 with i7
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Personal: MX-25 Fluxbox, ThinkPad X1 Carbon gen 9 with i7
Other: Raspberry Pi 5 with MX-23 Xfce Raspberry Pi Respin
Re: MX 25 Beta 1 Feedback thread
maybe delay 5 sec, check daemon is running and agent is not running to avoid running twice, into background.Jerry3904 wrote: Thu Sep 25, 2025 1:36 pm Before I send mx-fluxbox up, I received a message that we have not enabled spice-vdagent in fluxbox. I made no such decision so I need to ask: is its absence commission (intentional) or omission (accidental)? If the latter, can I just paste in the stanza in 23.6 startup again?
Thanks.Code: Select all
# start spice-vdagent in KVM/Qemu if [ -x /usr/bin/spice-vdagent ]; then pidof -q spice-vdagentd && /usr/bin/spice-vdagent fi
e.g. with:
Code: Select all
# start spice-vdagent in KVM/Qemu
if [ -x /usr/bin/spice-vdagent ]; then
(sleep 5 && pidof -q spice-vdagentd && ! pidof -q spice-vdagent && /usr/bin/spice-vdagent)&
fi