add dockmode script
This commit is contained in:
parent
2afe705647
commit
c1e6bdfaa5
19
local/bin/dockmode
Executable file
19
local/bin/dockmode
Executable file
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
contains() {
|
||||
what="$1"
|
||||
shift
|
||||
while [ -n "$1" ]; do
|
||||
[ "$what" = "$1" ] && return 0
|
||||
shift
|
||||
done
|
||||
return 1
|
||||
}
|
||||
|
||||
where="${1:-above}"
|
||||
contains "$where" "above" "below" "left-of" "right-of" || exit 1
|
||||
|
||||
xset dpms 0 0 0
|
||||
xautolock -disable
|
||||
xrandr --output DP1 --$where eDP1
|
||||
bash ~/.fehbg
|
Loading…
Reference in New Issue
Block a user