aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinstall.sh3
-rwxr-xr-xmove-to-next-monitor2
2 files changed, 3 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index e773930..1408805 100755
--- a/install.sh
+++ b/install.sh
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
cd $(dirname $0)
-cp ./move-to-next-monitor /usr/local/bin/move-to-next-monitor \ No newline at end of file
+cp ./move-to-next-monitor /usr/local/bin/move-to-next-monitor
+chmod +x /usr/local/bin/move-to-next-monitor
diff --git a/move-to-next-monitor b/move-to-next-monitor
index a8e4929..691b5d9 100755
--- a/move-to-next-monitor
+++ b/move-to-next-monitor
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python3
import subprocess
import re
bgstack15