fd6e551ebe
A small script will add the QubesIncoming shortcut to Nautilus file pane on the first use of qvm-copy to a given VM. The shortcut will not be recreated if deleted. fixes QubesOS/qubes-issues#2229
7 lines
210 B
Bash
7 lines
210 B
Bash
#!/bin/sh
|
|
if [ ! -e ~/.config/gtk-3.0/qubes-incoming-bookmark-created ]
|
|
then
|
|
echo "file:///home/user/QubesIncoming" >> ~/.config/gtk-3.0/bookmarks
|
|
touch ~/.config/gtk-3.0/qubes-incoming-bookmark-created
|
|
fi
|