Skip to content

Commit fe6c8ce

Browse files
authored
Enhance configs_install.sh with TODO comments
Added comments and TODOs for future enhancements regarding GNOME terminal settings and gsettings usage.
1 parent 147dd52 commit fe6c8ce

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Ubuntu_22.04/configs_install.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,26 @@
1212
# TODO consider using dconf dump & dconf load instead of calling gsettings for every key
1313
# see: https://askubuntu.com/questions/984205/how-to-save-gnome-settings-in-a-file
1414

15+
16+
# TODO - use sth like this:
17+
# apply_gsettings() {
18+
# local schema="$1"
19+
# while IFS= read -r line; do
20+
# [[ -z "$line" || "$line" =~ ^# ]] && continue
21+
# gsettings set "$schema" "$line"
22+
# done
23+
# }
24+
#
25+
# apply_gsettings "test" <<EOF
26+
# ano
27+
# nie #blabla
28+
# mozno
29+
#
30+
# # lala
31+
# sjsjdj
32+
#
33+
# EOF
34+
1535
# TODO pohrat sa s tymi nastaveniami, ci vlastne su vsetky potrebne a robia to co chcem
1636

1737
. ../prelude.sh

0 commit comments

Comments
 (0)