Added Xdefaults, switch to urxvt
This commit is contained in:
parent
a3e0a2287d
commit
76f9f6b4a0
|
@ -0,0 +1,69 @@
|
||||||
|
! Xcursor.theme: whiteglass
|
||||||
|
! Xcursor.size: 16
|
||||||
|
|
||||||
|
! Urxvt Settings
|
||||||
|
|
||||||
|
! Pas de barre de défilement
|
||||||
|
URxvt*scrollBar: False
|
||||||
|
|
||||||
|
! Couleur d'arrière plan noir
|
||||||
|
URxvt*background: black
|
||||||
|
|
||||||
|
! Couleur d'avant plan blanc
|
||||||
|
URxvt*foreground: white
|
||||||
|
|
||||||
|
! Dimension du terminal
|
||||||
|
! URxvt*geometry: 120x40
|
||||||
|
|
||||||
|
! Lien cliquable
|
||||||
|
! Valeur possible pour l'option matcher button: 1=clic gauche, 2= clic milieu, 3=clic droit
|
||||||
|
! URxvt.perl-ext-common: default,matcher
|
||||||
|
! URxvt.urlLauncher: chromium
|
||||||
|
! URxvt.matcher.button: 3
|
||||||
|
|
||||||
|
! Prise en charge des onglets
|
||||||
|
! shift+bas ou clic sur NEW= ouvrir nouvel onglet,
|
||||||
|
! shift + fleche gauche/droite=navigation dans les onglets.
|
||||||
|
! ctrl + fleche gauche/droite= deplacement onglet
|
||||||
|
! ctrl+d ou taper exit = fermer onglet/terminal
|
||||||
|
! URxvt.perl-ext-common: default,tabbed
|
||||||
|
! URxvt.font: xft:Inconsolata-g for Powerline:size=13:antialias=true
|
||||||
|
! URxvt.font: xft:Inconsolata-g for Powerline:size=14:antialias=true
|
||||||
|
! URxvt.font: xft:Anonymice Powerline:size=14:antialias=true
|
||||||
|
! URxvt.font: xft:DejaVu Sans Mono for Powerline:size=12
|
||||||
|
URxvt.font: xft:Ubuntu Mono derivative Powerline:antialias=true:size=14
|
||||||
|
! URxvt.font: xft:Sauce Code Powerline Black:antialias=true:size=14
|
||||||
|
! URxvt.font: xft:Monofur for Powerline:antialias=true:size=14
|
||||||
|
! URxvt.font: xft:Monaco for Powerline:antialias=true:size=12
|
||||||
|
! URxvt*font: xft:Terminess Powerline:size=14
|
||||||
|
! URxvt.letterSpace: -1
|
||||||
|
! URxvt.font: xft:Comic Sans MS:antialias=true:size=10
|
||||||
|
|
||||||
|
urxvt*depth: 32
|
||||||
|
! urxvt.transparent:true
|
||||||
|
! URxvt*backgroundPixmap: /home/thomas/Pictures/Wallpapers/archwithout.png;style=tiled
|
||||||
|
|
||||||
|
! Keycode fixes for Ctrl+direction in Vim
|
||||||
|
URxvt.keysym.C-Up: \033[1;5A
|
||||||
|
URxvt.keysym.C-Down: \033[1;5B
|
||||||
|
URxvt.keysym.C-Right: \033[1;5C
|
||||||
|
URxvt.keysym.C-Left: \033[1;5D
|
||||||
|
URxvt.keysym.C-Prior: \033[5;5~
|
||||||
|
URxvt.keysym.C-Next: \033[6;5~
|
||||||
|
URxvt.keysym.C-Home: \033[7;5~
|
||||||
|
URxvt.keysym.C-End: \033[8;5~
|
||||||
|
|
||||||
|
URxvt.perl-ext-common: default,clipboard,new-window
|
||||||
|
URxvt*iso14755: False
|
||||||
|
URxvt*iso14755_52: False
|
||||||
|
URxvt.keysym.Shift-Control-C: perl:clipboard:copy
|
||||||
|
URxvt.keysym.Shift-Control-V: perl:clipboard:paste
|
||||||
|
URxvt.keysym.Shift-Control-E: perl:new-window
|
||||||
|
URxvt.clipboard.copycmd: xsel -ib
|
||||||
|
URxvt.clipboard.pastecmd: xsel -ob
|
||||||
|
|
||||||
|
urxvt*scrollTtyOutput: false
|
||||||
|
urxvt*scrollTtyKeypress: true
|
||||||
|
|
||||||
|
URxvt*color12: rgb:5c/5c/ff
|
||||||
|
URxvt.letterSpace: -1
|
|
@ -91,7 +91,7 @@ local battery = require("battery")
|
||||||
local calendar = require("calendar")
|
local calendar = require("calendar")
|
||||||
|
|
||||||
-- This is used later as the default terminal and editor to run.
|
-- This is used later as the default terminal and editor to run.
|
||||||
terminal = "terminator"
|
terminal = "urxvt"
|
||||||
editor = os.getenv("EDITOR") or "nano"
|
editor = os.getenv("EDITOR") or "nano"
|
||||||
editor_cmd = terminal .. " -e " .. editor
|
editor_cmd = terminal .. " -e " .. editor
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,7 @@ main() {
|
||||||
make_link vimrc .vimrc
|
make_link vimrc .vimrc
|
||||||
make_link ycm_extra_conf.py .vim/ycm_extra_conf.py
|
make_link ycm_extra_conf.py .vim/ycm_extra_conf.py
|
||||||
make_link awesome .config/awesome
|
make_link awesome .config/awesome
|
||||||
|
make_link Xdefaults .Xdefaults
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ alias pdf="evince"
|
||||||
alias pacman='pacman --color=auto'
|
alias pacman='pacman --color=auto'
|
||||||
|
|
||||||
# clean for cmake files
|
# clean for cmake files
|
||||||
alias cclean='\rm -r `find . -name "CMakeCache.txt"` `find . -name "cmake_install.cmake"` `find . -name "CMakeFiles"` `find . -name "Makefile"`'
|
alias cclean='rm -rf `find . -name "CMakeCache.txt"` `find . -name "cmake_install.cmake"` `find . -name "CMakeFiles"` `find . -name "Makefile"`'
|
||||||
|
|
||||||
# Some games
|
# Some games
|
||||||
alias war3="optirun wine /home/thomas/.wine/drive_c/Program\ Files/Warcraft/War3.exe -opengl"
|
alias war3="optirun wine /home/thomas/.wine/drive_c/Program\ Files/Warcraft/War3.exe -opengl"
|
||||||
|
|
Loading…
Reference in New Issue