diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-06-20 11:40:44 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-06-20 11:40:44 +0200 |
commit | 95bc8b92bb4ade116f96ffcb2b40c42652acb37c (patch) | |
tree | 9537ada97e22550638cccb7ed79bdeb36df2f334 /notificator.go | |
parent | 0358eda7e3b56282383877f82aab1abc96c7f627 (diff) |
[feat] return the correct svg path for snap
Diffstat (limited to 'notificator.go')
-rw-r--r-- | notificator.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/notificator.go b/notificator.go index 8d0ee18..a69bdb0 100644 --- a/notificator.go +++ b/notificator.go @@ -99,6 +99,11 @@ func (n *notificator) errorStartingVPN(err error) { } func getSVGPath() string { + snapPath := os.Getenv("SNAP") + if snapPath != "" { + return snapPath + "/snap/gui/riseupvpn.svg" + } + wd, _ := os.Getwd() svgPath := path.Join(wd, svgFileName) if fileExist(svgPath) { |