Skip to content

Instantly share code, notes, and snippets.

@weakish
Created August 11, 2018 18:11
Show Gist options
  • Save weakish/1223a50e12515bf20e871edc49c18b94 to your computer and use it in GitHub Desktop.
Save weakish/1223a50e12515bf20e871edc49c18b94 to your computer and use it in GitHub Desktop.
copy #vivaldi browser bookmark file to current dir #sh
#!/bin/sh
os="$(uname)"
case "$os" in
'Linux')
cp "$HOME/.config/vivaldi/Default/Bookmarks" ./
;;
'Darwin')
cp "$HOME/Library/Application Support/Vivaldi/Default/Bookmarks" ./
;;
*)
echo "Only supports Linux and macOS. Please send a patch or open an issue."
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment