2021-03-28 17:25:13 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# ~/.xinitrc
|
|
|
|
#
|
|
|
|
# Executed by startx (run your window manager from here)
|
|
|
|
|
2021-04-11 17:42:30 +02:00
|
|
|
# Automatic brightness controll
|
2021-05-11 11:21:15 +02:00
|
|
|
[[ $(uname -n) == *"laptop"* ]] && clight &
|
2021-03-28 17:25:13 +02:00
|
|
|
|
2021-04-11 17:42:30 +02:00
|
|
|
# Set cursor
|
|
|
|
xsetroot -cursor_name left_ptr
|
|
|
|
|
2021-05-11 11:21:15 +02:00
|
|
|
[[ $(uname -n) == *"desktop"* ]] && xrandr --output HDMI-0 --primary --output HDMI-1 --left-of HDMI-0
|
2021-04-19 12:13:58 +02:00
|
|
|
|
2021-04-11 17:42:30 +02:00
|
|
|
exec bspwm
|