diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2021-01-22 23:25:18 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2021-01-22 23:25:18 +0100 |
commit | 1c49cd9eafc1e34675bf001dbeb92b4c32094d7a (patch) | |
tree | 6ff2beab9c6cdc7fa0897b17861e69658547206a /.local | |
parent | update (diff) | |
download | dotfiles-bsd-1c49cd9eafc1e34675bf001dbeb92b4c32094d7a.tar.gz dotfiles-bsd-1c49cd9eafc1e34675bf001dbeb92b4c32094d7a.tar.bz2 dotfiles-bsd-1c49cd9eafc1e34675bf001dbeb92b4c32094d7a.tar.xz dotfiles-bsd-1c49cd9eafc1e34675bf001dbeb92b4c32094d7a.tar.zst dotfiles-bsd-1c49cd9eafc1e34675bf001dbeb92b4c32094d7a.zip |
Scripts update
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/dualscreen | 3 | ||||
-rwxr-xr-x | .local/bin/extscreen | 10 | ||||
-rwxr-xr-x | .local/bin/swscreen | 5 | ||||
-rwxr-xr-x | .local/bin/sync-elfeed.sh | 7 | ||||
-rwxr-xr-x | .local/bin/sync-todo.sh | 7 | ||||
-rwxr-xr-x | .local/bin/triplescreen | 3 |
6 files changed, 10 insertions, 25 deletions
diff --git a/.local/bin/dualscreen b/.local/bin/dualscreen index 86e127b..35b7134 100755 --- a/.local/bin/dualscreen +++ b/.local/bin/dualscreen @@ -8,6 +8,3 @@ xrandr --output HDMI-2 --off xrandr --output HDMI-3 --off xrandr --output DP-2 --off xrandr --output DP-3 --off - -bspc monitor HDMI-1 -d 01 02 03 04 05 06 07 08 -bspc monitor LVDS-1 -d 09 10 11 12 diff --git a/.local/bin/extscreen b/.local/bin/extscreen new file mode 100755 index 0000000..ed182ef --- /dev/null +++ b/.local/bin/extscreen @@ -0,0 +1,10 @@ +#!/bin/sh + +xrandr --output VGA-1 --off +xrandr --output HDMI-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal +xrandr --output DP-1 --off +xrandr --output LVDS-1 --off +xrandr --output HDMI-2 --off +xrandr --output HDMI-3 --off +xrandr --output DP-2 --off +xrandr --output DP-3 --off diff --git a/.local/bin/swscreen b/.local/bin/swscreen deleted file mode 100755 index f0ae3e8..0000000 --- a/.local/bin/swscreen +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/local/bin/dash - -xrandr --output LVDS1 --off --output VGA1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI1 --off --output DP1 --off --output HDMI2 --off --output HDMI3 --off --output DP2 --off --output DP3 --off - -bspc monitor VGA1 -d 01 02 03 04 05 06 07 08 09 10 diff --git a/.local/bin/sync-elfeed.sh b/.local/bin/sync-elfeed.sh deleted file mode 100755 index c39257a..0000000 --- a/.local/bin/sync-elfeed.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/local/bin/dash - -date=$(date) -git -C ~/.elfeed add . >/dev/null 2>&1 -git -C ~/.elfeed commit -m "$date" >/dev/null 2>&1 || exit 1 -git -C ~/.elfeed push origin master >/dev/null 2>&1 -exit diff --git a/.local/bin/sync-todo.sh b/.local/bin/sync-todo.sh deleted file mode 100755 index 21001d3..0000000 --- a/.local/bin/sync-todo.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/local/bin/dash - -date=$(date) -git -C /usr/home/jozan/.emacs.d/org/todo add . >/dev/null 2>&1 -git -C /usr/home/jozan/.emacs.d/org/todo commit -m "$date" >/dev/null 2>&1 || exit 1 -git -C /usr/home/jozan/.emacs.d/org/todo push origin master >/dev/null 2>&1 -exit diff --git a/.local/bin/triplescreen b/.local/bin/triplescreen index 32cb1de..f8ebb7e 100755 --- a/.local/bin/triplescreen +++ b/.local/bin/triplescreen @@ -8,6 +8,3 @@ xrandr --output HDMI-2 --off xrandr --output HDMI-3 --off xrandr --output DP-2 --off xrandr --output DP-3 --off - -bspc monitor HDMI-1 -d 01 02 03 04 05 06 07 08 -bspc monitor VGA-1 -d 09 10 11 12 |