You are not logged in.
Pages: 1
Where is the correct location to configure the following settings in XFCE4 on Debian 13?
xset r rate 400 50
setxkbmap -option caps:swapescape
xset s off
I have tried using Application Settings → Session and Startup → Application Autostart, .Xresources, and .xprofile, but none of them worked. .bashrc works, but then I always have to open a terminal before the settings take effect.
Offline
The easiest way would likely place the lines into a script then call the script at startup.
#!/bin/sh
#description#
xset r rate 400 50 &
setxkbmap -option caps:swapescape &
xset s off &
Name it and call it at startup.
I AM CANADIAN!
Siduction
Debian Sid
Xfce 4.20 with Wayland/Labwc
Offline
The easiest way would likely place the lines into a script then call the script at startup.
Name it and call it at startup.
Thx for the reply. What place do you actually mean by "startup"?
Offline
Settings → Session and Startup → Application Autostart,
I AM CANADIAN!
Siduction
Debian Sid
Xfce 4.20 with Wayland/Labwc
Offline
Settings → Session and Startup → Application Autostart,
As I mentioned in my initial post, I have already tried that approach. The system appears to overwrite settings when they are applied at that stage.
So the question is where should I put them if none of the following methods doesn't work:
Application Autostart
.Xresources
.xprofile
Given that using .bashrc (which works) is an impractical workaround. Maybe I just have to debug the startup process to identify the correct location for these configurations.
Last edited by mlauronen (2025-10-06 15:36:57)
Offline
Pages: 1
[ Generated in 0.007 seconds, 8 queries executed - Memory usage: 538.45 KiB (Peak: 539.08 KiB) ]