diff options
| -rwxr-xr-x | .xinitrc | 4 | ||||
| -rw-r--r-- | .zsh_aliases | 2 | ||||
| -rw-r--r-- | .zshrc | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -1,7 +1,9 @@ +#!/usr/bin/env sh + # xinput disable 'ETPS/2 Elantech Touchpad' & echo 'Starting redshift' -redshift -c /home/charles/.config/redshift.conf & +redshift -c $HOME/.config/redshift.conf & echo 'Starting dunst' dunst & xset r rate 200 50 diff --git a/.zsh_aliases b/.zsh_aliases index 7c59352..39a0b67 100644 --- a/.zsh_aliases +++ b/.zsh_aliases @@ -86,8 +86,10 @@ alias lpassp='lpass show --password --clip' # put password in clipboard # helper to switch between dual and single monitor setup alias dual='xrandr --output LVDS1 --primary --left-of VGA1 --output VGA1 --mode 1280x1024' +alias triple='xrandr --output DVI-0 --mode 1024x768 --left-of DVI-1 --output DVI-1 --mode 1920x1080 --primary --left-of HDMI-0 --output HDMI-0 --mode 1920x1080' alias single='xrandr --output VGA1 --off' + # edit config files alias zshrc="vim $DOTDIR/.zshrc && source $DOTDIR/.zshrc" alias zshaliasrc="vim $DOTDIR/.zsh_aliases && source $DOTDIR/.zshrc" @@ -79,8 +79,8 @@ export LESS_TERMCAP_ZO=$(tput ssupm) export LESS_TERMCAP_ZW=$(tput rsupm) #XDG -export XDG_CONFIG_HOME="/home/charles/.config/" -export XDG_DATA_HOME="/home/charles/.data/" +export XDG_CONFIG_HOME="$HOME/.config/" +export XDG_DATA_HOME="$HOME/.data/" export EDITOR="vim" export TERM="st-256color" |
