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


Application Autostart was the solution, but I had to change the script's permissions to 750.
Thank you
Last edited by mlauronen (2025-10-10 10:14:43)
Offline
Pages: 1
[ Generated in 0.010 seconds, 7 queries executed - Memory usage: 538.87 KiB (Peak: 539.49 KiB) ]