core-agent-linux/qubes-rpc/nautilus/qvm_nautilus_bookmark.sh
Marta Marczykowska-Górecka fd6e551ebe
Added "QubesIncoming" shortcut to Nautilus
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
2020-01-13 16:45:41 +01:00

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