Page 10 of 29
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 12:34 pm
by asqwerth
dolphin_oracle wrote: Mon Apr 10, 2023 11:09 am
is the text thing in the password only with a dark theme?
Tested with mx-comfort light theme. It didn't have this problem. All the dots that denote each entered text key showed up just fine.
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 12:55 pm
by siamhie
@dolphin_oracle I think I found the answer. I see a difference between MX 21 Fluxbox and MX 23-a2 rsyslog.conf entries.
MX23-a2 rsyslog.conf
Code: Select all
# /etc/rsyslog.conf configuration file for rsyslog
#
# For more information install rsyslog-doc and see
# /usr/share/doc/rsyslog-doc/html/configuration/index.html
#################
#### MODULES ####
#################
module(load="imuxsock") # provides support for local system logging
module(load="imklog") # provides kernel logging support
#module(load="immark") # provides --MARK-- message capability
# provides UDP syslog reception
#module(load="imudp")
#input(type="imudp" port="514")
# provides TCP syslog reception
#module(load="imtcp")
#input(type="imtcp" port="514")
###########################
#### GLOBAL DIRECTIVES ####
###########################
#
# Set the default permissions for all log files.
#
$FileOwner root
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022
#
# Where to place spool and state files
#
$WorkDirectory /var/spool/rsyslog
#
# Include all config files in /etc/rsyslog.d/
#
$IncludeConfig /etc/rsyslog.d/*.conf
###############
#### RULES ####
###############
#
# Log anything besides private authentication messages to a single log file
#
*.*;auth,authpriv.none -/var/log/syslog
#
# Log commonly used facilities to their own log file
#
auth,authpriv.* /var/log/auth.log
cron.* -/var/log/cron.log
kern.* -/var/log/kern.log
mail.* -/var/log/mail.log
user.* -/var/log/user.log
#
# Emergencies are sent to everybody logged in.
#
*.emerg :omusrmsg:*
MX 21 Fluxbox rsyslog.conf
Code: Select all
# /etc/rsyslog.conf configuration file for rsyslog
#
# For more information install rsyslog-doc and see
# /usr/share/doc/rsyslog-doc/html/configuration/index.html
#################
#### MODULES ####
#################
module(load="imuxsock") # provides support for local system logging
module(load="imklog") # provides kernel logging support
#module(load="immark") # provides --MARK-- message capability
# provides UDP syslog reception
#module(load="imudp")
#input(type="imudp" port="514")
# provides TCP syslog reception
#module(load="imtcp")
#input(type="imtcp" port="514")
###########################
#### GLOBAL DIRECTIVES ####
###########################
#
# Use traditional timestamp format.
# To enable high precision timestamps, comment out the following line.
#
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
#
# Set the default permissions for all log files.
#
$FileOwner root
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022
#
# Where to place spool and state files
#
$WorkDirectory /var/spool/rsyslog
#
# Include all config files in /etc/rsyslog.d/
#
$IncludeConfig /etc/rsyslog.d/*.conf
###############
#### RULES ####
###############
#
# First some standard log files. Log by facility.
#
auth,authpriv.* /var/log/auth.log
*.*;auth,authpriv.none -/var/log/syslog
#cron.* /var/log/cron.log
daemon.* -/var/log/daemon.log
kern.* -/var/log/kern.log
lpr.* -/var/log/lpr.log
mail.* -/var/log/mail.log
user.* -/var/log/user.log
#
# Logging for the mail system. Split it up so that
# it is easy to write scripts to parse these files.
#
mail.info -/var/log/mail.info
mail.warn -/var/log/mail.warn
mail.err /var/log/mail.err
#
# Some "catch-all" log files.
#
*.=debug;\
auth,authpriv.none;\
mail.none -/var/log/debug
*.=info;*.=notice;*.=warn;\
auth,authpriv.none;\
cron,daemon.none;\
mail.none -/var/log/messages
#
# Emergencies are sent to everybody logged in.
#
*.emerg :omusrmsg:*
The catch-all entry is not present in MX23-a2. There's also no debug file generated in MX23-a2 but is with Fluxbox.
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 1:27 pm
by siamhie
I went ahead and backed up my rsyslog.conf file and copied over from Fluxbox the rsyslog file. I now have three new log files (daemon.log, debug, messages).
rsyslog-21.png
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 1:29 pm
by dolphin_oracle
The .conf file is part of the package. I guess they made a defaults change. I’m unlikely to change the default but at least we know the why
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 3:28 pm
by timkb4cq
@Jerry3904 Touchpad-indicator is now in the main MX-23 repo.
It isn't being maintained anymore. I had to patch it to use AtayanaAppIndicator instead of AppIndicator which isn't in bookworm.
The manual portion of it works fine. The automatic disable touchpad when mouse is plugged in and disable touchpad when typing options do not.
There's obviously been some change in mouse/touchpad handling since bullseye.
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 3:30 pm
by timkb4cq
@siamhie Corectrl 1.3.5 is now in the MX-23 main repo.
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 3:31 pm
by Jerry3904
Thanks a lot! Too bad about lack of maintenance, it's pretty useful for WMs.
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 3:39 pm
by timkb4cq
Correction. If use libinput driver for touchpad is selected in mx-tweak the disable touchpad when typing does work.
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 3:41 pm
by Jerry3904
timkb4cq wrote: Mon Apr 10, 2023 3:39 pm
Correction. If
use libinput driver for touchpad is selected in mx-tweak the disable touchpad when typing does work.
Great! Then we'll have to specify that, I guess.
Re: MX-23 alpha2 feedback thread
Posted: Mon Apr 10, 2023 3:46 pm
by dolphin_oracle
I didn't do it on the alpha, but i've been thinking of shipping libinput only by default. removing the xserver-xorg-input-synaptics touchpad driver (which is no longer developed) and xserver-xorg-input-evdev as well. most of the dialogs now pretty much expect libinput and I know that things like reverse scrolling work better on libinput.