MX 25 Beta 1 Feedback thread

Message
Author
User avatar
Jerry3904
Administrator
Posts: 23656
Joined: Wed Jul 19, 2006 6:13 am

Re: MX 25 Beta 1 Feedback thread

#241 Post by Jerry3904 »

Jerry3904 wrote: Thu Sep 25, 2025 9:55 am I tried that but perhaps placed the flag in first position. Will look again,, thanks.
No change, but thanks. Maybe @dolphin_oracle has a solution?
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

IoannisTsoulos
Posts: 58
Joined: Sat Apr 17, 2021 2:20 pm

Re: MX 25 Beta 1 Feedback thread

#242 Post by IoannisTsoulos »

Adrian wrote: Thu Sep 25, 2025 8:12 am
IoannisTsoulos wrote: Thu Sep 25, 2025 2:13 am Also, the brave browser does not work any more after switching to wayland
I see no issues here, can you elaborate? Is it not starting? What does it say if you type in konsole: brave-browser?
Can you provide QSI, did you install nvidia driver?
Here is the output for the brave-browser command:
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

User avatar
Adrian
Developer
Posts: 9272
Joined: Wed Jul 12, 2006 1:42 am

Re: MX 25 Beta 1 Feedback thread

#243 Post by Adrian »

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.

User avatar
Melber
Developer
Posts: 1508
Joined: Tue Mar 23, 2021 4:19 pm

Re: MX 25 Beta 1 Feedback thread

#244 Post by Melber »

siamhie wrote: Thu Sep 25, 2025 9:36 am
Jerry3904 wrote: Thu Sep 25, 2025 8:47 am
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;
No, that appears to have no effect. Maybe we need to use the flag somewhere else?

Code: Select all

--set-scaled
I think you need to start nitrogen with the options in the startup file?

Code: Select all

nitrogen --restore --set-scaled
Jerry3904 wrote: Thu Sep 25, 2025 11:00 am
Jerry3904 wrote: Thu Sep 25, 2025 9:55 am I tried that but perhaps placed the flag in first position. Will look again,, thanks.
No change, but thanks. Maybe @dolphin_oracle has a solution?

@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
Think it should be changed to 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-scaled /usr/share/backgrounds/default25.png)
    fi
fi
nitrogen first creates a bg-saved.cfg when you change the wallpaper.

+++
🥷
Last edited by Melber on Thu Sep 25, 2025 11:36 am, edited 1 time in total.

User avatar
dolphin_oracle
Developer
Posts: 22855
Joined: Sun Dec 16, 2007 12:17 pm

Re: MX 25 Beta 1 Feedback thread

#245 Post by dolphin_oracle »

Jerry3904 wrote: Thu Sep 25, 2025 11:00 am
Jerry3904 wrote: Thu Sep 25, 2025 9:55 am I tried that but perhaps placed the flag in first position. Will look again,, thanks.
No change, but thanks. Maybe @dolphin_oracle has a solution?
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
to this

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/

IoannisTsoulos
Posts: 58
Joined: Sat Apr 17, 2021 2:20 pm

Re: MX 25 Beta 1 Feedback thread

#246 Post by IoannisTsoulos »

Adrian 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.
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 videos

User avatar
kmathern
Developer
Posts: 2608
Joined: Wed Jul 12, 2006 2:26 pm

Re: MX 25 Beta 1 Feedback thread

#247 Post by kmathern »

IoannisTsoulos 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
I see an additional nvidia related boot option mentioned here https://wiki.debian.org/NvidiaGraphicsD ... odesetting

Code: Select all

nvidia-drm.fbdev=1

User avatar
Jerry3904
Administrator
Posts: 23656
Joined: Wed Jul 19, 2006 6:13 am

Re: MX 25 Beta 1 Feedback thread

#248 Post by Jerry3904 »

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

User avatar
Jerry3904
Administrator
Posts: 23656
Joined: Wed Jul 19, 2006 6:13 am

Re: MX 25 Beta 1 Feedback thread

#249 Post by Jerry3904 »

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?

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
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
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

User avatar
fehlix
Developer
Posts: 12992
Joined: Wed Apr 11, 2018 5:09 pm

Re: MX 25 Beta 1 Feedback thread

#250 Post by fehlix »

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?

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
Thanks.
maybe delay 5 sec, check daemon is running and agent is not running to avoid running twice, into background.
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

Post Reply

Return to “General”