aboutsummaryrefslogtreecommitdiff
path: root/.i3-blocks/blocks/display
diff options
context:
space:
mode:
authorNeodarZ <neodarz@neodarz.ovh>2016-09-21 20:01:28 +0200
committerNeodarZ <neodarz@neodarz.ovh>2016-09-21 20:01:28 +0200
commit78db7d43845d3ea276b8028bec6d67b5a5641a1b (patch)
tree27a58084c5eac2dc9b084e9f57fd6bc762afc480 /.i3-blocks/blocks/display
parent0cde152bf8483e894eb64c41529c5d8c6349327b (diff)
downloaddotfiles-78db7d43845d3ea276b8028bec6d67b5a5641a1b.tar.xz
dotfiles-78db7d43845d3ea276b8028bec6d67b5a5641a1b.zip
Ajout de la conf de vim + mise à jour de la structure
Diffstat (limited to '.i3-blocks/blocks/display')
-rwxr-xr-x.i3-blocks/blocks/display68
1 files changed, 0 insertions, 68 deletions
diff --git a/.i3-blocks/blocks/display b/.i3-blocks/blocks/display
deleted file mode 100755
index 9071900..0000000
--- a/.i3-blocks/blocks/display
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/bin/bash
-
-xrandrOut=$(xrandr)
-
-hdmiName=$(echo "${xrandrOut}" | grep -i 'HDMI' | awk '{print $1}')
-vgaName=$(echo "${xrandrOut}" | grep -i 'VGA' | awk '{print $1}')
-edpName=$(echo "${xrandrOut}" | grep -i 'EDP' | awk '{print $1}')
-
-activeDisplays=$(echo "${xrandrOut}" | grep " connected" | sed -e "s/\([A-Z0-9]\+\) connected.*/\1/" | tr -s '\n' ' ')
-displayFile='/tmp/.displays'
-
-if [[ -f "${displayFile}" ]]; then
- oldDisplays=$(cat "${displayFile}")
-else
- oldDisplays=""
-fi
-
-if [[ "${oldDisplays}" != "${activeDisplays}" ]]; then
- change="yes"
-else
- change="no"
-fi
-
-# External, HDMI + VGA
-if [[ "$activeDisplays" =~ "${hdmiName}" && "$activeDisplays" =~ "${vgaName}" ]]; then
- if [[ "${change}" = "yes" ]]; then
- $(xrandr --output "${edpName}" --off)
- $(xrandr --output "${vgaName}" --auto)
- $(xrandr --output "${hdmiName}" --primary --auto)
- fi
- echo "VGA1 & HDMI"
- echo "VGA1 & HDMI"
- echo ""
-# External, HDMI
-elif [[ "$activeDisplays" =~ "${hdmiName}" ]]; then
- if [[ "${change}" = "yes" ]]; then
- $(xrandr --output "${edpName}" --off)
- $(xrandr --output "${vgaName}" --off)
- $(xrandr --output "${hdmiName}" --primary --auto)
- fi
- echo "HDMI"
- echo "HDMI"
- echo ""
-# External, VGA
-elif [[ "$activeDisplays" =~ "${vgaName}" ]]; then
- if [[ "${change}" = "yes" ]]; then
- $(xrandr --output "${edpName}" --off)
- $(xrandr --output "${vgaName}" --primary --auto)
- $(xrandr --output "${hdmiName}" --off)
- fi
- echo "VGA"
- echo "VGA"
- echo
-# Only one internal
-elif [[ "$activeDisplays" =~ "${edpName}" ]]; then
- if [[ "${change}" = "yes" ]]; then
- $(xrandr --output "${edpName}" --primary --auto)
- $(xrandr --output "${vgaName}" --off)
- $(xrandr --output "${hdmiName}" --off)
- fi
- echo "eDP"
- echo "eDP"
- echo ""
-fi
-
-if [[ "${change}" = "yes" ]]; then
- echo "${activeDisplays}" > "${displayFile}"
-fi \ No newline at end of file