aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Héda <ivan.heda@gmail.com>2018-05-09 07:53:57 +0200
committerGitHub <noreply@github.com>2018-05-09 07:53:57 +0200
commit899c0567b9b4cb86bd653db76ca72652feb45d87 (patch)
treede46c45134b08c8d5d7270f2576ca80d5d403ccf
parentFixed left corner out of the screen behavior. (diff)
parentImplementing changes requested in vanaoff/move-to-next-monitor#1 (diff)
downloadmove-to-next-monitor-master.tar.gz
move-to-next-monitor-master.tar.bz2
move-to-next-monitor-master.zip
Merge pull request #1 from davla/masterHEADmaster
Small installation fixes
-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