Skip to content

Commit ac4c16c

Browse files
committed
abolish /rw/config parsing
(Does not influence Qubes specific /rw/config parsing.)
1 parent f71c3c2 commit ac4c16c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

usr/bin/uwt_settings_show

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -e
77

88
shopt -s nullglob
9-
for i in /etc/uwt.d/*.conf /rw/config/uwt.d/*.conf /usr/local/etc/uwt.d/*.conf; do
9+
for i in /etc/uwt.d/*.conf /usr/local/etc/uwt.d/*.conf; do
1010
bash -n "$i"
1111
source "$i"
1212
done

usr/libexec/uwt/uwtwrapper

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ preparation() {
9292

9393
source_config_folder() {
9494
shopt -s nullglob
95-
for i in /etc/uwt.d/*.conf /rw/config/uwt.d/*.conf /usr/local/etc/uwt.d/*.conf; do
95+
for i in /etc/uwt.d/*.conf /usr/local/etc/uwt.d/*.conf; do
9696
bash -n "$i"
9797
source "$i"
9898
done

0 commit comments

Comments
 (0)