From 0b37bb7c7f111f458ec5744cd6eaf312fff97374 Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 15 May 2019 15:15:31 +0100 Subject: [PATCH] initial commit --- barrier.conf | 32 ++++++++++++++++++++++++++++++++ run_barrier.sh | 3 +++ 2 files changed, 35 insertions(+) create mode 100644 barrier.conf create mode 100755 run_barrier.sh diff --git a/barrier.conf b/barrier.conf new file mode 100644 index 0000000..8c38482 --- /dev/null +++ b/barrier.conf @@ -0,0 +1,32 @@ +# https://github.com/debauchee/barrier/blob/master/doc/barrier.conf.example + +# sample barrier configuration file +# +# comments begin with the # character and continue to the end of +# line. comments may appear anywhere the syntax permits. + +section: screens + Arch666: + Medion666: +end + +section: links + # larry is to the right of moe and curly is above moe + Arch666: + left = Medion666 + + Medion666: + right = Arch666 +end + +# section: aliases +# # curly is also known as shemp +# curly: +# shemp +# end + +section: options + keystroke(Super+Insert) = switchToScreen(Medion666) + keystroke(Super+Home) = switchToScreen(Arch666) + # keystroke(Super+PageUp) = switchToScreen(ElCapitan) +end diff --git a/run_barrier.sh b/run_barrier.sh new file mode 100755 index 0000000..cc4b5a5 --- /dev/null +++ b/run_barrier.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +barriers --no-tray --debug ERROR --name Arch666 -c ~/.config/barrier/barrier.conf --address 192.168.0.5:24800 &