added Xresources

This commit is contained in:
arcan1s
2014-03-04 10:49:14 +04:00
parent f76d4c423d
commit d2b1add4de
3 changed files with 43 additions and 5 deletions

View File

@ -6,11 +6,12 @@ Some of using configuration files
Description Description
----------- -----------
* `Bespin` (directory) - settings for [BESpin](http://kde-look.org/content/show.php/Bespin?content=63928). It is stored in `$HOME/.config/`. * `Bespin` (directory) - settings for [BESpin](http://kde-look.org/content/show.php/Bespin?content=63928). It is stored in `$HOME/.config/`.
* `arch_install.sh` - simple script for automatic installation
* `awesome` (directory) - settings for Awesome-WM. It is stored in `$HOME/.config/`. * `awesome` (directory) - settings for Awesome-WM. It is stored in `$HOME/.config/`.
* `festival` (directory tree) - settings for festival Russian speaking. * `festival` (directory tree) - settings for festival Russian speaking.
* `kbdlayout` (files) - settings for Russian language with layout switching on CapsLock. `20-keyboard.conf` (X11 settings) is stored in `/etc/X11/xorg.conf.d/`. `my.map.gz` (keymap) is stored in `/usr/share/kbd/keymaps/i386/qwerty`. * `kbdlayout` (files) - settings for Russian language with layout switching on CapsLock. `20-keyboard.conf` (X11 settings) is stored in `/etc/X11/xorg.conf.d/`. `my.map.gz` (keymap) is stored in `/usr/share/kbd/keymaps/i386/qwerty`.
* `kdmrc` - settings for KDM. It is stored as `/usr/share/config/kdm/kdmrc`. * `kdmrc` - settings for KDM. It is stored as `/usr/share/config/kdm/kdmrc`.
* `sakura.conf` - settings for [Sakura terminal](https://launchpad.net/sakura). It is stored in `$HOME/.config/sakura/`. * `sakura.conf` - settings for [Sakura terminal](https://launchpad.net/sakura). It is stored in `$HOME/.config/sakura/`.
* `vimrc` - settings for VIM. It is stored as `$HOME/.vimrc`. * `vimrc` - settings for VIM. It is stored as `$HOME/.vimrc`.
* `Xresources` - settings for some Xorg applications (for example, urxvt). It is stored as `$HOME/.Xresources`
* `zshrc` - settings (for root and normal user) for zsh. It is stored as `$HOME/.zshrc`. * `zshrc` - settings (for root and normal user) for zsh. It is stored as `$HOME/.zshrc`.
* `arch_install.sh` - simple script for automatic installation

37
Xresources Normal file
View File

@ -0,0 +1,37 @@
XTerm*vt100..background: black
XTerm*vt100..foreground: white
! urxvt
! appearance
URxvt.scrollBar: false
URxvt.cursorBlink: false
! colors
URxvt.depth: 32
URxvt.background: [75]#000000
URxvt.foreground: #d7d7d7
URxvt.cursorColor: #ffffff
URxvt.cursorUnderline: true
URxvt.pointerColor: #ffffff
! font
URxvt*font: xft:Liberation Mono:pixelsize=13:antialias=true:hinting=true
URxvt*boldFont: xft:Liberation Mono:bold:pixelsize=13:antialias=true:hinting=true
URxvt.letterSpace: -1
URxvt.lineSpace: 0
! scrolling
URxvt*scrollTtyKeypress: true
URxvt*scrollWithBuffer: true
URxvt*secondaryScroll: true
URxvt*saveLines: 65535
! extentions
URxvt.perl-ext-common: default,clipboard
! keybindings
URxvt.keysym.Home: \033[1~
URxvt.keysym.Ins: \033[2~
URxvt.keysym.Del: \033[3~
URxvt.keysym.End: \033[4~
URxvt.keysym.Prior: \033[5~
URxvt.keysym.Next: \033[6~
URxvt.keysym.Up: \033[A
URxvt.keysym.Down: \033[B
URxvt.keysym.Right: \033[C
URxvt.keysym.Left: \033[D

View File

@ -42,7 +42,7 @@ end
beautiful.init("/home/arcanis/.config/awesome/theme.lua") beautiful.init("/home/arcanis/.config/awesome/theme.lua")
-- 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 = "sakura" terminal = "urxvt"
editor = os.getenv("EDITOR") or "vim" editor = os.getenv("EDITOR") or "vim"
editor_cmd = terminal .. " -e " .. editor editor_cmd = terminal .. " -e " .. editor
@ -52,9 +52,9 @@ fileman = "dolphin"
net = "opera" net = "opera"
mailcli = "kmail" mailcli = "kmail"
torrent = "transmission-qt" torrent = "transmission-qt"
musplay = "amarok" musplay = "qmmp"
messager = "qutim" messager = "qutim"
prtscreen = "/home/arcanis/bin/screenshots" prtscreen = "/home/arcanis/.local/bin/screenshots"
screensaver = "xscreensaver-command -activate" screensaver = "xscreensaver-command -activate"
-- Default modkey. -- Default modkey.
@ -422,7 +422,7 @@ awful.rules.rules = {
properties = { tag = tags[1][6] } }, properties = { tag = tags[1][6] } },
{ rule = { class = "psi" }, { rule = { class = "psi" },
properties = { tag = tags[1][6] } }, properties = { tag = tags[1][6] } },
{ rule = { class = "Amarok" }, { rule = { class = "Qmmp" },
properties = { tag = tags[1][5] } }, properties = { tag = tags[1][5] } },
{ rule = { class = "Gvim" }, { rule = { class = "Gvim" },
properties = { tag = tags[1][2] } }, properties = { tag = tags[1][2] } },