Dominique Leuenberger
e62827b8d3
- Update set_trusted.sh: Use the right value in gio command (bsc#1185026). OBS-URL: https://build.opensuse.org/request/show/887211 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/nautilus?expand=0&rev=340
14 lines
231 B
Bash
14 lines
231 B
Bash
#!/bin/bash
|
|
|
|
DIR=$HOME/Desktop
|
|
|
|
for f in $(ls $DIR)
|
|
do
|
|
gio set -t string $DIR/$f "metadata::trusted" true
|
|
done
|
|
|
|
if [ -f $HOME/.config/autostart/set_trusted.desktop ]; then
|
|
rm $HOME/.config/autostart/set_trusted.desktop
|
|
fi
|
|
|