19 lines
418 B
Bash
Executable File
19 lines
418 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# ~/.xinitrc
|
|
#
|
|
# Executed by startx (run your window manager from here)
|
|
|
|
# Automatic brightness controll
|
|
[[ $(uname -n) == *"laptop"* ]] && clight &
|
|
|
|
# Set cursor
|
|
xsetroot -cursor_name left_ptr
|
|
|
|
[[ $(uname -n) == *"desktop"* ]] && xrandr --output HDMI-0 --primary --output HDMI-1 --left-of HDMI-0
|
|
|
|
systemctl --user set-environment DISPLAY=:0
|
|
systemctl --user --no-block start xsession.target
|
|
|
|
exec bspwm
|