summaryrefslogtreecommitdiff
path: root/.linux
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2019-02-02 09:58:52 -0800
committerMike Crute <mike@crute.us>2019-02-02 09:58:52 -0800
commitfdfe9d0be968387f946d9a80080bb444b42257fd (patch)
tree820faaf477c56441247cfbb2723ebcff3a76f64f /.linux
parent7edffb6d1dfc7d3f829deb9415b15638d984b7b9 (diff)
downloaddotfiles-fdfe9d0be968387f946d9a80080bb444b42257fd.tar.bz2
dotfiles-fdfe9d0be968387f946d9a80080bb444b42257fd.tar.xz
dotfiles-fdfe9d0be968387f946d9a80080bb444b42257fd.zip
Convert launchd to systemd units
Diffstat (limited to '.linux')
-rw-r--r--.linux/systemd/remote-vlc-alt-port.service10
-rw-r--r--.linux/systemd/remote-vlc.service10
-rw-r--r--.linux/systemd/tab-server-alt-port.service10
-rw-r--r--.linux/systemd/tab-server.service10
4 files changed, 40 insertions, 0 deletions
diff --git a/.linux/systemd/remote-vlc-alt-port.service b/.linux/systemd/remote-vlc-alt-port.service
new file mode 100644
index 0000000..e3b8b39
--- /dev/null
+++ b/.linux/systemd/remote-vlc-alt-port.service
@@ -0,0 +1,10 @@
1[Unit]
2Description=Remote VLC for audio playback using alternate port
3PartOf=graphical-session.target
4
5[Service]
6Type=simple
7ExecStart=flatpak run org.videolan.VLC -I rc --advanced --rc-host=127.0.0.1:1235
8
9[Install]
10WantedBy=graphical-session.target
diff --git a/.linux/systemd/remote-vlc.service b/.linux/systemd/remote-vlc.service
new file mode 100644
index 0000000..37827e4
--- /dev/null
+++ b/.linux/systemd/remote-vlc.service
@@ -0,0 +1,10 @@
1[Unit]
2Description=Remote VLC for audio playback
3PartOf=graphical-session.target
4
5[Service]
6Type=simple
7ExecStart=flatpak run org.videolan.VLC -I rc --advanced --rc-host=127.0.0.1:1234
8
9[Install]
10WantedBy=graphical-session.target
diff --git a/.linux/systemd/tab-server-alt-port.service b/.linux/systemd/tab-server-alt-port.service
new file mode 100644
index 0000000..87422bf
--- /dev/null
+++ b/.linux/systemd/tab-server-alt-port.service
@@ -0,0 +1,10 @@
1[Unit]
2Description=Browser tab opening service using alternate port
3PartOf=graphical-session.target
4
5[Service]
6Type=simple
7ExecStart=python3 %h/bin/tab_server.py -p 1425
8
9[Install]
10WantedBy=graphical-session.target
diff --git a/.linux/systemd/tab-server.service b/.linux/systemd/tab-server.service
new file mode 100644
index 0000000..0777b62
--- /dev/null
+++ b/.linux/systemd/tab-server.service
@@ -0,0 +1,10 @@
1[Unit]
2Description=Browser tab opening service
3PartOf=graphical-session.target
4
5[Service]
6Type=simple
7ExecStart=python3 %h/bin/tab_server.py
8
9[Install]
10WantedBy=graphical-session.target