summaryrefslogtreecommitdiffstats
path: root/picom
diff options
context:
space:
mode:
Diffstat (limited to 'picom')
-rw-r--r--picom/.config/systemd/user/picom.service6
-rw-r--r--picom/Makefile9
2 files changed, 15 insertions, 0 deletions
diff --git a/picom/.config/systemd/user/picom.service b/picom/.config/systemd/user/picom.service
new file mode 100644
index 0000000..f01df84
--- /dev/null
+++ b/picom/.config/systemd/user/picom.service
@@ -0,0 +1,6 @@
+[Service]
+ExecStart=picom -m 0.9 -i 0.8 -f -D 5 --inactive-dim 0.3
+Restart=always
+
+[Install]
+WantedBy=default.target
diff --git a/picom/Makefile b/picom/Makefile
new file mode 100644
index 0000000..915d134
--- /dev/null
+++ b/picom/Makefile
@@ -0,0 +1,9 @@
+include ../Makefile.include
+
+install:
+ @systemctl --user enable picom
+ @systemctl --user start picom
+
+uninstall:
+ @systemctl --user stop picom
+ @systemctl --user disable picom