summaryrefslogtreecommitdiffstats
path: root/.local/bin/ref-unison.pl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-x.local/bin/ref-unison.pl32
1 files changed, 0 insertions, 32 deletions
diff --git a/.local/bin/ref-unison.pl b/.local/bin/ref-unison.pl
deleted file mode 100755
index 64ce4db..0000000
--- a/.local/bin/ref-unison.pl
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/local/bin/perl
-
-use strict;
-use warnings;
-
-use constant {
- UNISON_PATH => '/usr/local/bin/unison',
- NOTIFY_SEND_PATH => '/usr/local/bin/notify-send'
-};
-
-sub main
-{
- system(
- UNISON_PATH,
- '-ui',
- 'text',
- '/usr/home/jozan/.local/share/newsboat/cache.db',
- 'ssh://root@jozanleclerc.xyz//root/unison/.local/share/newsboat/cache.db'
- );
- system(
- UNISON_PATH,
- '-ui',
- 'text',
- '/usr/home/jozan/.abook/addressbook',
- 'ssh://root@jozanleclerc.xyz//root/unison/.abook/addressbook'
- );
- exit 0;
-}
-
-main();
-
-__END__