Fixed a bug in the configuration writing section that caused the config file to be all kids of screwed up.

This commit is contained in:
stormdragon2976 2022-11-30 17:16:04 -05:00
parent a39d145043
commit bd88e966de

6
i38.sh
View File

@ -360,7 +360,7 @@ bindsym Control+Shift+F10 move container to workspace number \$ws10, exec spd-sa
EOF EOF
# Create ratpoison mode if requested. # Create ratpoison mode if requested.
if [[ -n ${escapeKey} ]]; then if [[ -n "${escapeKey}" ]]; then
cat << EOF >> ${i3Path}/config cat << EOF >> ${i3Path}/config
bindsym $escapeKey mode "ratpoison" bindsym $escapeKey mode "ratpoison"
mode "ratpoison" { mode "ratpoison" {
@ -414,7 +414,7 @@ EOF
fi fi
# For those who do not want ratpoison mode. # For those who do not want ratpoison mode.
if [[ -z ${escapeKey} ]]; then if [[ -z "${escapeKey}" ]]; then
cat << EOF >> ${i3Path}/config cat << EOF >> ${i3Path}/config
# Text editor bound to $mod+e # Text editor bound to $mod+e
bindsym \$mod+e exec $textEditor, mode "default" bindsym \$mod+e exec $textEditor, mode "default"
@ -464,7 +464,7 @@ bindsym \$mod+Control+q exec bash -c 'yad --image "dialog-question" --title "I38
EOF EOF
fi fi
cat << EOF > ${i3Path}/config cat << EOF >> ${i3Path}/config
# Auto start section # Auto start section
$(if [[ $sounds -eq 0 ]]; then $(if [[ $sounds -eq 0 ]]; then
echo "exec_always --no-startup-id ${i3Path}/scripts/sound.py" echo "exec_always --no-startup-id ${i3Path}/scripts/sound.py"