26 lines
832 B
Bash
26 lines
832 B
Bash
#!/bin/sh
|
|
|
|
[ -z "$XDG_CONFIG_HOME" ] && export XDG_CONFIG_HOME="$HOME/.config"
|
|
[ -z "$DOTFILES_PATH" ] && export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
|
|
|
. "$DOTFILES_PATH/bin/prelude"
|
|
|
|
# no screen blanking
|
|
# xset -dpms &
|
|
# xset s noblank &
|
|
# xset s off &
|
|
|
|
# has_command xss-lock && has_command dm-tool && xss-lock -- dm-tool switch-to-greeter &
|
|
|
|
[ -f "$DOTFILES_PATH/apps/de/x/loadresources" ] && "$DOTFILES_PATH/apps/de/x/loadresources"
|
|
[ -f "$HOME/.xmodmap" ] && xmodmap "$HOME/.xmodmap"
|
|
has_command xcape && xcape -e 'Control_L=Escape' &
|
|
has_command autocutsel && autocutsel -fork &
|
|
has_command libinput-gestures-setup && libinput-gestures-setup start
|
|
has_command autorandr && autorandr -c
|
|
has_command redshift && redshift -r -l 39.1:-94.6 -t 6500K:3000K &
|
|
|
|
xset r rate 250 80 & # keyrepeat
|
|
|
|
. maybe_source_env_file x/profile
|