aboutsummaryrefslogtreecommitdiff
path: root/apks/alps/fix-statics-dir.patch
blob: 72eaffaaab3340c683e3a082a1077aa0b403e4e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff --git a/cmd/alps/main.go b/cmd/alps/main.go
index 5a00957..f537177 100644
--- a/cmd/alps/main.go
+++ b/cmd/alps/main.go
@@ -23,7 +23,7 @@ import (
 	_ "git.sr.ht/~migadu/alps/plugins/viewtext"
 )
 
-var themesPath = "./themes"
+var themesPath = "/var/lib/alps/themes"
 
 func main() {
 	var (
diff --git a/plugin.go b/plugin.go
index e634f02..43b8164 100644
--- a/plugin.go
+++ b/plugin.go
@@ -7,7 +7,7 @@ import (
 )
 
 // PluginDir is the path to the plugins directory.
-const PluginDir = "plugins"
+const PluginDir = "/var/lib/alps/plugins"
 
 // Plugin extends alps with additional functionality.
 type Plugin interface {