We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a362e commit 69042b4Copy full SHA for 69042b4
analyzer/linux/modules/packages/xdg_open.py
@@ -0,0 +1,14 @@
1
+#!/usr/bin/env python
2
+
3
+from lib.core.packages import Package
4
5
6
+class Xdg_open(Package):
7
+ """Start file with xdg-open"""
8
9
+ summary = "Run via xdg-open"
10
+ description = "Generic package that uses xdg-open to run sample"
11
12
+ def prepare(self):
13
+ self.args = [self.target] + self.args
14
+ self.target = "/usr/bin/xdg-open"
0 commit comments