mv home bin to repo
This commit is contained in:
15
.bin/brightness
Executable file
15
.bin/brightness
Executable 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
12
.bin/multimonitor
Executable 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
|
||||||
@@ -308,7 +308,7 @@ globalkeys = gears.table.join(
|
|||||||
awful.key({}, "XF86MonBrightnessUp", function () awful.util.spawn("/home/snarbutas/.bin/brightness +15", false) end),
|
awful.key({}, "XF86MonBrightnessUp", function () awful.util.spawn("/home/snarbutas/.bin/brightness +15", false) end),
|
||||||
awful.key({}, "XF86MonBrightnessDown",function () awful.util.spawn("/home/snarbutas/.bin/brightness -15", false) end),
|
awful.key({}, "XF86MonBrightnessDown",function () awful.util.spawn("/home/snarbutas/.bin/brightness -15", false) end),
|
||||||
-- Extend monitor
|
-- Extend monitor
|
||||||
awful.key({ "Control", "Mod4" }, "e", function () awful.util.spawn("/home/snarbutas/.bin/dualhead", false) end),
|
awful.key({ "Control", "Mod4" }, "e", function () awful.util.spawn("/home/snarbutas/.bin/multimonitor", false) end),
|
||||||
-- Lock computer
|
-- Lock computer
|
||||||
awful.key({ "Control", "Mod4" }, "l", function () awful.util.spawn("i3lock -c 000000 -i /home/snarbutas/Pictures/spiral1.png") end),
|
awful.key({ "Control", "Mod4" }, "l", function () awful.util.spawn("i3lock -c 000000 -i /home/snarbutas/Pictures/spiral1.png") end),
|
||||||
awful.key({ "Control", "Mod4", "Shift" }, "l",
|
awful.key({ "Control", "Mod4", "Shift" }, "l",
|
||||||
|
|||||||
3
.yadm/alt/.xinitrc##Linux.epiphanius
Normal file
3
.yadm/alt/.xinitrc##Linux.epiphanius
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
xmodmap ~/.Xmodmap 2>~/.Xmodlog
|
||||||
|
ssh-agent -s > ~/.ssh/agent
|
||||||
|
exec awesome
|
||||||
Reference in New Issue
Block a user