From e06a4dced463f103b38040067d2cc6f55344d9ce Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Mon, 12 Oct 2020 01:43:27 +0200 Subject: [PATCH] Use xdg-open instead of rifle as the default plumber --- contrib/matrix_decrypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/matrix_decrypt.py b/contrib/matrix_decrypt.py index 8196a8e..7b472a1 100755 --- a/contrib/matrix_decrypt.py +++ b/contrib/matrix_decrypt.py @@ -75,7 +75,7 @@ def main(): if args.file is None: file_name = save_file(plaintext) if plumber is None: - plumber = "/usr/bin/rifle" + plumber = "xdg-open" else: file_name = args.file open(file_name, "wb").write(plaintext)