+ Added X11 related config files

This commit is contained in:
ziro 2020-05-11 07:19:57 +07:00
parent b9dd768385
commit a194d4a62e
6 changed files with 124 additions and 0 deletions

2
.config/xinitrc Normal file
View file

@ -0,0 +1,2 @@
#!/bin/sh
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/xprofile" ] && . "${XDG_CONFIG_HOME:-$HOME/.config}/xprofile"

4
.config/xprofile Normal file
View file

@ -0,0 +1,4 @@
xrandr --newmode "768x432_60.00" 25.75 768 792 864 960 432 435 440 450 -hsync +vsync
xrandr --newmode "960x540_60.00" 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync
xrandr --addmode VGA-1 768x432_60.00
xrandr --addmode VGA-1 960x540_60.00

View file

@ -82,6 +82,8 @@ alias gcl='git clone'
alias gs='git status'
alias gaa='git add --all'
alias gcm='git commit -m'
alias gca='git commit -a'
alias gcam='git commit -a -m'
alias gp='git push'
alias config='/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'