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