Added -u to update scripts of they get updated and you want to keep your current config.
This commit is contained in:
parent
97dbc0f863
commit
ae217c4333
8
i38.sh
8
i38.sh
@ -115,10 +115,16 @@ export QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1
|
|||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
update_scripts() {
|
||||||
|
cp -rv scripts/ "${i3Path}/" | dialog --backtitle "I38" --progressbox "Updating scripts..." -1 -1
|
||||||
|
exit 0
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Array of command line arguments
|
# Array of command line arguments
|
||||||
declare -A command=(
|
declare -A command=(
|
||||||
[h]="This help screen."
|
[h]="This help screen."
|
||||||
|
[u]="Copy over the latest version of scripts."
|
||||||
[x]="Generate ~/.xinitrc and ~/.xprofile."
|
[x]="Generate ~/.xinitrc and ~/.xprofile."
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -128,6 +134,7 @@ args="${args//[[:space:]]/}"
|
|||||||
while getopts "${args}" i ; do
|
while getopts "${args}" i ; do
|
||||||
case "$i" in
|
case "$i" in
|
||||||
h) help;;
|
h) help;;
|
||||||
|
u) update_scripts;;
|
||||||
x) write_xinitrc
|
x) write_xinitrc
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
@ -187,6 +194,7 @@ cat << EOF > ${i3Path}/config
|
|||||||
# layout, use the i3-config-wizard
|
# layout, use the i3-config-wizard
|
||||||
#
|
#
|
||||||
|
|
||||||
|
workspace_layout tabbed
|
||||||
# Font for window titles. Will also be used by the bar unless a different font
|
# Font for window titles. Will also be used by the bar unless a different font
|
||||||
# is used in the bar {} block below.
|
# is used in the bar {} block below.
|
||||||
font pango:monospace 8
|
font pango:monospace 8
|
||||||
|
Loading…
Reference in New Issue
Block a user