d79061fb44
Maybe the conditionals shouldn't be too terse, by the way...
16 lines
354 B
Bash
Executable File
16 lines
354 B
Bash
Executable File
#!/bin/sh
|
|
# tweak xdg-user-dirs defaults if told so
|
|
# using tuples like "PHOTOS:Documents/Pictures"
|
|
|
|
. shell-config
|
|
|
|
CONFIG="/etc/xdg/user-dirs.defaults"
|
|
|
|
[ -z "$GLOBAL_XDG_USER_DIRS" ] ||
|
|
echo "$GLOBAL_XDG_USER_DIRS" \
|
|
| tr ' ' '\n' \
|
|
| while IFS=':' read k v; do
|
|
[ -n "$k" -a -n "$v" ] || continue
|
|
shell_config_set "$CONFIG" "$k" "$v"
|
|
done
|