various fixes
[distro-setup] / desktop-20-autostart.sh
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 date "+%A, %B %d, %r, %S seconds" > /tmp/desktop-20-autostart-log
17
18
19 # first 2 alternatives showed under ubuntu 14.04, second 2 under arch at 11/2015
20 if [[ $1 ]]; then
21 right_monitor_rotation=left
22 else
23 right_monitor_rotation=normal
24 fi
25
26
27 if ! xout="$(xrandr)"; then
28 # under wayland
29 exit 0
30 fi
31 if echo "$xout" | grep "^HDMI-1 connected" &>/dev/null; then
32 # this command created by using arandr and then clicking save, copying the result.
33 xrandr --output VGA-1 --off --output HDMI-1 --mode 3840x2160 --pos 0x0 --rotate normal --output eDP-1 --off
34 fi
35 /a/bin/distro-setup/input-setup m
36
37 echo -n "ending " >> /tmp/desktop-20-autostart-log
38 date "+%A, %B %d, %r, %S seconds" >> /tmp/desktop-20-autostart-log