aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 6a24714c7bf5fb347d9ee33aa69f12b93fa35fd3 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

cd $(dirname $0)
if /usr/bin/env python -V 2>&1 | grep 'Python 2' &> /dev/null; then
    sed '1c#!/usr/bin/env python3' ./move-to-next-monitor \
        > /usr/local/bin/move-to-next-monitor
else
    cp ./move-to-next-monitor /usr/local/bin/move-to-next-monitor
fi
bgstack15