diff --git a/README.md b/README.md index cdcddb5..d4a6e1d 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,12 @@ Some of using configuration files Description ----------- * `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/`. * `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`. * `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/`. * `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`. -* `arch_install.sh` - simple script for automatic installation diff --git a/Xresources b/Xresources new file mode 100644 index 0000000..0e8f050 --- /dev/null +++ b/Xresources @@ -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 diff --git a/awesome/rc.lua b/awesome/rc.lua index 6bfda12..d7b9957 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -42,7 +42,7 @@ end beautiful.init("/home/arcanis/.config/awesome/theme.lua") -- This is used later as the default terminal and editor to run. -terminal = "sakura" +terminal = "urxvt" editor = os.getenv("EDITOR") or "vim" editor_cmd = terminal .. " -e " .. editor @@ -52,9 +52,9 @@ fileman = "dolphin" net = "opera" mailcli = "kmail" torrent = "transmission-qt" -musplay = "amarok" +musplay = "qmmp" messager = "qutim" -prtscreen = "/home/arcanis/bin/screenshots" +prtscreen = "/home/arcanis/.local/bin/screenshots" screensaver = "xscreensaver-command -activate" -- Default modkey. @@ -422,7 +422,7 @@ awful.rules.rules = { properties = { tag = tags[1][6] } }, { rule = { class = "psi" }, properties = { tag = tags[1][6] } }, - { rule = { class = "Amarok" }, + { rule = { class = "Qmmp" }, properties = { tag = tags[1][5] } }, { rule = { class = "Gvim" }, properties = { tag = tags[1][2] } },