dotfiles/.xinitrc

19 lines
418 B
Plaintext
Raw Normal View History

2021-03-28 17:25:13 +02:00
#!/bin/bash
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
# Automatic brightness controll
2021-05-11 11:21:15 +02:00
[[ $(uname -n) == *"laptop"* ]] && clight &
2021-03-28 17:25:13 +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
systemctl --user set-environment DISPLAY=:0
systemctl --user --no-block start xsession.target
exec bspwm