Skip to content

Commit 0cba289

Browse files
committed
[fix] : Fixed SC2086
1 parent d712f0b commit 0cba289

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

channels/i3/airootfs.any/root/customize_airootfs_i3.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ remove "/home/${username}/.config/conky/conky-jp.conf"
2828

2929
# Change browser that open help file
3030
if [[ "${arch}" = "i686" ]]; then
31-
sed -i -e s/chromium/firefox/g /etc/skel/.config/i3/config
32-
sed -i -e s/chromium/firefox/g /home/${username}/.config/i3/config
31+
sed -i -e s/chromium/firefox/g "/etc/skel/.config/i3/config"
32+
sed -i -e s/chromium/firefox/g "/home/${username}/.config/i3/config"
3333
fi
3434

3535
# disable light-locker on live
36-
sed -i "/light/s/^/# /g" /home/${username}/.config/i3/config
36+
sed -i "/light/s/^/# /g" "/home/${username}/.config/i3/config"
3737

3838
# disable auto screen lock
3939
rm /etc/xdg/autostart/light-locker.desktop

0 commit comments

Comments
 (0)