This is a collection of dotfiles and scripts for my bspwm setup
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
xrdb "$XDG_CONFIG_HOME/xorg/Xresources"
|
|
|
|
|
|
|
|
# Setup display
|
|
|
|
autorandr --change
|
|
|
|
|
|
|
|
# Set default X cursor to arrow
|
|
|
|
xsetroot -cursor_name left_ptr
|
|
|
|
|
|
|
|
# Disable screensaver
|
|
|
|
xset s off
|
|
|
|
xset -dpms
|
|
|
|
|
|
|
|
# Turn off touchscreen
|
|
|
|
inputctl -s off
|
|
|
|
|
|
|
|
# Daemon starting
|
|
|
|
dunst &
|
|
|
|
redshift -P &
|
|
|
|
|
|
|
|
emacs --daemon &
|
|
|
|
thunar --daemon &
|
|
|
|
|
|
|
|
sxhkd "$XDG_CONFIG_HOME/sxhkd/$WM" &
|
|
|
|
|
|
|
|
/usr/lib/polkit-kde-authentication-agent-1 &
|
|
|
|
|
|
|
|
exec "$WM"
|