- Add set_trusted.desktop and set_trusted.sh: If using /etc/skel function, the script can set files in $HOME/Desktop as trusted automatically when user login (bsc#1103523). OBS-URL: https://build.opensuse.org/request/show/631711 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/nautilus?expand=0&rev=296
10 lines
115 B
Bash
10 lines
115 B
Bash
#!/bin/bash
|
|
|
|
DIR=$HOME/Desktop
|
|
|
|
for f in $(ls $DIR)
|
|
do
|
|
gio set -t string $DIR/$f "metadata::trusted" yes
|
|
done
|
|
|