summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorShubham Saini <pryr@pryr.xyz>2021-01-10 10:06:07 +0000
committerShubham Saini <pryr@pryr.xyz>2021-01-10 10:06:07 +0000
commit5a58034071911286816bbf2418a349f7657494ab (patch)
tree5f3d494b9a1cc44c1d56add4c880025c6f1019e2 /bin
parenta42bf68b85d951d9a4cf624fffb74dc247ed6fe1 (diff)
added shortcut for hdmi
Diffstat (limited to 'bin')
-rwxr-xr-xbin/.bin/disp7
-rwxr-xr-xbin/.bin/lay2
-rwxr-xr-xbin/.bin/lay_edp2
-rwxr-xr-xbin/.bin/temp2
-rwxr-xr-xbin/.bin/unblock8
5 files changed, 7 insertions, 14 deletions
diff --git a/bin/.bin/disp b/bin/.bin/disp
new file mode 100755
index 0000000..e6de4a8
--- /dev/null
+++ b/bin/.bin/disp
@@ -0,0 +1,7 @@
1#!/bin/sh
2status=$(cat /sys/class/drm/card0/*HDMI*/status)
3if [ $status == "connected" ]; then
4 xrandr --output eDP --primary --mode 1920x1080 --pos 0x1080 --rotate normal --output HDMI-A-0 --mode 1366x768 --pos 0x0 --scale 1.4x1.4 --rotate normal --output DisplayPort-0 --off
5else
6 xrandr --output eDP --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-A-0 --off
7fi
diff --git a/bin/.bin/lay b/bin/.bin/lay
deleted file mode 100755
index f9ea307..0000000
--- a/bin/.bin/lay
+++ /dev/null
@@ -1,2 +0,0 @@
1#!/bin/sh
2xrandr --output eDP --primary --mode 1920x1080 --pos 0x1080 --rotate normal --output HDMI-A-0 --mode 1366x768 --pos 0x0 --rotate normal --output DisplayPort-0 --off
diff --git a/bin/.bin/lay_edp b/bin/.bin/lay_edp
deleted file mode 100755
index fcac2f6..0000000
--- a/bin/.bin/lay_edp
+++ /dev/null
@@ -1,2 +0,0 @@
1#!/bin/sh
2xrandr --output eDP --primary --mode 1920x1080 --pos 0x0 --rotate normal --output HDMI-A-0 --off
diff --git a/bin/.bin/temp b/bin/.bin/temp
deleted file mode 100755
index fec8439..0000000
--- a/bin/.bin/temp
+++ /dev/null
@@ -1,2 +0,0 @@
1#!/bin/bash
2paste <(cat /sys/class/thermal/thermal_zone*/type) <(cat /sys/class/thermal/thermal_zone*/temp) | column -s $'\t' -t | sed 's/\(.\)..$/.\1°C/'
diff --git a/bin/.bin/unblock b/bin/.bin/unblock
deleted file mode 100755
index 257c4fb..0000000
--- a/bin/.bin/unblock
+++ /dev/null
@@ -1,8 +0,0 @@
1#!/bin/sh
2#whitelist escape
3set -e
4printf "\033[0;35mSetting wlo1 down....\033[0m\n"
5sudo ip link set wlo1 down
6printf "\033[0;36mChanging MAC address....\033[0m\n"
7sudo macchanger --mac=FC:77:74:C7:71:71 wlo1
8printf "\033[0;32mEnjoy....\033[0m\n"