We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cba289 commit fc77cf1Copy full SHA for fc77cf1
channels/i3/airootfs.any/root/customize_airootfs_i3.sh
@@ -32,6 +32,16 @@ if [[ "${arch}" = "i686" ]]; then
32
sed -i -e s/chromium/firefox/g "/home/${username}/.config/i3/config"
33
fi
34
35
+# Set permission for script
36
+for _dir in "/etc/skel/" "/home/${username}/"; do
37
+ for _script in ".config/"{"polybar/launch.sh","rofi/power.sh"}; do
38
+ [[ -e "${_dir}/${_script}" ]] && {
39
+ echo "Change permission of ${_dir}/${_script} to 755"
40
+ chmod 755 "${_dir}/${_script}"
41
+ }
42
+ done
43
+done
44
+
45
# disable light-locker on live
46
sed -i "/light/s/^/# /g" "/home/${username}/.config/i3/config"
47
0 commit comments