mv home bin to repo

This commit is contained in:
Simonas Narbutas
2018-07-24 17:08:53 +02:00
parent 9fe2acfeb9
commit f4c7de2e5d
4 changed files with 31 additions and 1 deletions

15
.bin/brightness Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#
# adjust screen brightness
#
#
# Script to adjust screen brightness
function usage_and_exit {
echo "Usage: $(basename ${0}) <param1>"
exit 1
}
# Exit if we have an incorrect number of arguments
if [ ${#} -ne 1 ]; then
usage_and_exit
fi
xbacklight -inc ${1}

12
.bin/multimonitor Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
DISPLAY_COUNT=$(xrandr -d :0 -q | grep ' connected' | wc -l)
if [ "$DISPLAY_COUNT" == 2 ]
then
xrandr --output HDMI2 --set "Broadcast RGB" "Full" --off --output HDMI1 --mode 2560x1440 --pos 1920x0 --rotate normal --output DP1 --set "Broadcast RGB" "Full" --off --output eDP1 --primary --mode 1920x1080 --pos 0x360 --rotate normal --output VIRTUAL1 --off
elif [ "$DISPLAY_COUNT" == 1 ]
then
xrandr --output HDMI2 --off --output HDMI1 --off --output DP1 --off --output eDP1 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output VIRTUAL1 --off
elif [ "$DISPLAY_COUNT" == 3 ]
then
xrandr --output VIRTUAL1 --off --output eDP1 --primary --mode 1920x1080 --pos 0x360 --rotate normal --output DP1 --off --output HDMI2 --off --output HDMI1 --off --output DP1-2 --mode 2560x1440 --pos 4480x0 --rotate normal --output DP1-1 --mode 2560x1440 --pos 1920x0 --rotate normal
fi