Hello, In the Message; Subject : Tumbleweed - is ~/.xprofile sourced? It is in 15.4, but it doesn't appear to be in TW? Message-ID : <7088a899-e5b5-4444-a3eb-ce95a8d622ab@gmail.com> Date & Time: Tue, 16 Jul 2024 23:01:45 -0500 [DCR] == "David C. Rankin" <drankinatty@gmail.com> has written: DCR> Devs, DCR> Strange observation. I configure the console bell and typematic rate in DCR> ~/.xprofile. It was sourced and worked fine on 15.4, but it DCR> doesn't seem to be sourced on TW. If it's not, what changed and DCR> where would I set it to be sourced again? DCR> In TW there is no /etc/X11/xinit/xinitrc, just xinitrc.common and no DCR> /etc/X11/xdm/Xsession. What is the recommended way or where DCR> should I put custom xset ... commands to run on desktop start? If you want xprofile to be compatible with xinit, here it is. DCR> Should we just create a custom /etc/X11/xinit/xinitrc with something like: DCR> #!/bin/sh DCR> [ -f /etc/xprofile ] && . /etc/xprofile DCR> [ -f ~/.xprofile ] && . ~/.xprofile In case you are wondering, sddm executes xprofile natively, just like xinitrc, so it is configured as follows. $ cat /usr/share/sddm/scripts/Xsession | grep profile [...] $SHELL -c "if (-f /etc/csh.login) source /etc/csh.login; if (-f ~/.login) source ~/.login; /bin/sh -c 'export -p' >! $xsess_tmp" . $xsess_tmp rm -f $xsess_tmp ;; */fish) [ -f /etc/profile ] && . /etc/profile [ -f $HOME/.profile ] && . $HOME/.profile -- $SHELL --login -c "/bin/sh -c 'export -p' > $xsess_tmp" . $xsess_tmp rm -f $xsess_tmp ;; *) # Plain sh, ksh, and anything we do not know. [ -f /etc/profile ] && . /etc/profile [ -f $HOME/.profile ] && . $HOME/.profile ;; esac [ -f /etc/xprofile ] && . /etc/xprofile [ -f /usr/local/etc/xprofile ] && . /usr/local/etc/xprofile [ -f $HOME/.xprofile ] && . $HOME/.xprofile That is, profile and xprofile are treated equally. Best Regards. --- ┏━━┓彡 Masaru Nomiya mail-to: nomiya @ lake.dti.ne.jp ┃\/彡 ┗━━┛ "Microsoft is overhauling its cybersecurity strategy, called the Secure Future Initiative, to incorporate key security features into its core set of technology platforms and cloud services. " -- Microsoft overhauls cyber strategy to finally embrace security by default --