指向 bash 脚本的符号链接不会在系统启动时启动

指向 bash 脚本的符号链接不会在系统启动时启动

根据主题,指向 bash 脚本的符号链接启动 Kubuntu 时不执行22.10。

如果我点击符号链接从 Dolphin 开始一切正常,执行原始脚本。

andrea@Tehesyan:/etc/profile.d$ ls -l
totale 52
...
lrwxrwxrwx 1 root   root     71 giu 13 19:14 script-remapping-mouse-keys.sh -> /home/andrea/programmazione/bash-scripts/script-remapping-mouse-keys.sh
-rwxrwxr-x 1 andrea andrea  176 mag 19 11:24 script-resetta-wifi-al-login.sh
-rwxr-xr-x 1 root   root    269 mag 16 11:25 script-start-pulseaudio.sh

符号链接是script-remapping-mouse-keys.sh,其他 bash 脚本运行,但它们不是符号链接

下面是原始的 bash 脚本,如果我从 Dolphin 启动符号链接,它仍然会运行。

#!/bin/bash
remote_id=18
mkdir -p /tmp/xkb/symbols
cat >/tmp/xkb/symbols/custom <<\EOF

xkb_symbols "remote" {
    key <AE04> { [ Home ] };
    key <AE07> { [ End ] };
    key <AE05> { [ Prior ] };
    key <AE08> { [ Next ] };
};
EOF

setxkbmap -device $remote_id -print \
 | sed 's/\(xkb_symbols.*\)"/\1+custom(remote)"/' \
 | xkbcomp -I/tmp/xkb -i $remote_id -synch - $DISPLAY 2>/dev/null

问题可能出在哪里?谢谢

相关内容