mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-12-22 01:03:35 +01:00
updated X11 configs
This commit is contained in:
parent
5af55e6014
commit
e07631588c
5 changed files with 44 additions and 2 deletions
20
X11/Xresources
Normal file
20
X11/Xresources
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
! General styling
|
||||||
|
*background: #3d3d3d
|
||||||
|
*foreground: #99aa99
|
||||||
|
|
||||||
|
! XTerm
|
||||||
|
xterm*dynamiccolors: true
|
||||||
|
xterm*utf8: 2
|
||||||
|
xterm*geometry: WINDOWGEOMETRY
|
||||||
|
xterm*visualBell: on
|
||||||
|
xterm*highlightSelection: true
|
||||||
|
!xterm*background: lightblack
|
||||||
|
!xterm*foreground: lightblue
|
||||||
|
!xterm*colorMode: on
|
||||||
|
!xterm*colorBD: lightcyan
|
||||||
|
!xterm*colorBDMode: on
|
||||||
|
!xterm*colorUL: white
|
||||||
|
!xterm*colorULMode: on
|
||||||
|
!xterm*scrollTtyOutput: false
|
||||||
|
!xterm*scrollKey: true
|
||||||
|
!xterm*scrollBar: true
|
8
X11/user-dirs.dirs
Normal file
8
X11/user-dirs.dirs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
XDG_DESKTOP_DIR="$HOME/Desktop"
|
||||||
|
XDG_DOWNLOAD_DIR="$HOME/Downloads"
|
||||||
|
XDG_TEMPLATES_DIR="$HOME/Templates"
|
||||||
|
XDG_PUBLICSHARE_DIR="$HOME/Public"
|
||||||
|
XDG_DOCUMENTS_DIR="$HOME/Documents"
|
||||||
|
XDG_MUSIC_DIR="$HOME/Music"
|
||||||
|
XDG_PICTURES_DIR="$HOME/Pictures"
|
||||||
|
XDG_VIDEOS_DIR="$HOME/Videos"
|
|
@ -19,6 +19,18 @@ fi
|
||||||
# OWN
|
# OWN
|
||||||
# ---------------------------------------------------------------
|
# ---------------------------------------------------------------
|
||||||
|
|
||||||
|
# Load Main Xresources
|
||||||
|
[ -f ~/.Xresources ] && xrdb -merge $HOME/.Xresources
|
||||||
|
|
||||||
|
# Load specific Xresources
|
||||||
|
XRESD="$HOME/.Xresources.d/"
|
||||||
|
for f in "$XRESD*"
|
||||||
|
do
|
||||||
|
xrdb -merge "$f"
|
||||||
|
done
|
||||||
|
|
||||||
|
numlockx on # turn on numlock
|
||||||
|
setxkbmap -option caps:escape # caps lock works as escape
|
||||||
|
|
||||||
|
|
||||||
# Load session
|
# Load session
|
|
@ -20,8 +20,10 @@
|
||||||
~/.tmux: tmux
|
~/.tmux: tmux
|
||||||
~/.tmux.conf: tmux/tmux.conf
|
~/.tmux.conf: tmux/tmux.conf
|
||||||
~/.vimrc: vim/vimrc
|
~/.vimrc: vim/vimrc
|
||||||
~/.xinitrc: xinitrc
|
~/.xinitrc: X11/xinitrc
|
||||||
~/.xsession: xsession
|
~/.xsession: X11/xsession
|
||||||
|
~/.Xresources: X11/Xresources
|
||||||
|
~/.config/user-dirs.dirs: X11/user-dirs.dirs
|
||||||
~/.config/awesome: awesome
|
~/.config/awesome: awesome
|
||||||
~/.config/redshift.conf: redshift/redshift.conf
|
~/.config/redshift.conf: redshift/redshift.conf
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue