Urxvt - awesome
Urxvt
From awesomeJump to: navigation, search
rxvt-unicode (urxvt for short) is a clone of the rxvt terminal emulator. It is packaged for just about every major GNU/Linux and BSD distribution, and it's an excellent terminal emulator, lightweight and fast, as its name suggests it has full unicode support and it's fully extendable with Perl. Some of the Perl extensions distributed with urxvt add tabs, quake-like terminal behaviour, clipboard integration, clickable URL's... You can find some tips for using rxvt-unicode and awesome on the Urxvt tips wiki page.
- NOTE: If you often work on remote hosts with SSH that don't have urxvt installed you can scp your local terminfo entry for rxvt-unicode to the "~/.terminfo/r" directory.
In order to get the most out of urxvt, you will want to modify its X resources. You can configure them in your .Xdefaults file. Here is an example to get you started:
! General
!urxvt*termName: rxvt-256color
urxvt*loginShell: true
urxvt*scrollBar: false
urxvt*secondaryScroll: true
urxvt*saveLines: 65535
urxvt*cursorBlink: false
urxvt*urgentOnBell: true
!urxvt*override-redirect:false
!urxvt*borderLess: false
!urxvt*internalBorder: 0
!urxvt*externalBorder: 0 ! Extensions
urxvt*perl-lib: /usr/lib/urxvt/perl/
urxvt*perl-ext-common: default,matcher,searchable-scrollback
urxvt*urlLauncher: /usr/bin/firefox
urxvt*matcher.button: 1
! - catch ugly URLs
urxvt.cutchars: `()'*<>[]{|}" ! Appearance
! - use a bitmap font
urxvt*font: -xos4-terminus-medium-*-*-*-12-*-*-*-*-*-*-*
urxvt*boldFont: -xos4-terminus-bold-*-*-*-12-*-*-*-*-*-*-*
! - use xft for drawing fonts
!urxvt*font: xft:Terminus:8
! - cursor
urxvt*cursorColor: #DCDCCC
! - pseudo transparency
!urxvt*shading: 50
!urxvt*transparent:true
!
! - color scheme
urxvt.background: #000000
urxvt.foreground: #EBEBFF
! black + red
!urxvt*color0: #3f3f3f
urxvt*color0: #000000
urxvt*color1: #e01010
! green + yellow
urxvt*color2: #00AA00
urxvt*color3: #FFFF00
! blue + purple
urxvt*color4: #112037
urxvt*color5: #A020F0
! cyan + white
urxvt*color6: #5B5BC7
urxvt*color7: #fefefe
! bright-black + bright-red
urxvt*color8: #6a6a6a
urxvt*color9: #FF5555
! bright-green + bright-yellow
urxvt*color10: #90EE90
urxvt*color11: #ffff2f
! bright-blue + bright-purple
urxvt*color12: #5B5BC7
urxvt*color13: #e628ba
! bright-cyan + bright-white
urxvt*color14: #7D7DFB
urxvt*color15: #ffffff
Urxvt - awesome的更多相关文章
- linux下的终端模拟器urxvt的配置
内容所在的文件: ~/.Xdefaults 文件的内容: URxvt.background:[90]#000000URxvt.foreground:#ffffffURxvt.colorBD:Gray9 ...
- Free Mind » Blog Archive » Yakuake + dtach vs Screen + urxvt
Free Mind » Blog Archive » Yakuake + dtach vs Screen + urxvt Yakuake + dtach vs Screen + urxvt
- Archlinux下i3wm与urxvt的配置
前段时间学习了GitHub的两位前辈:Airblader和wlh320.他们的相关教程在https://github.com/Airblader/i3和https://github.com/wlh32 ...
- 解决 urxvt “unknown terminal type.”
登录到远程服务器上后,有时执行某些命令会提示unknown terminal type. 这是因为远程ssh不支持urxvt,执行 export TERM=xterm-256color 或者在远程主机 ...
- i3wm配置
使用安装需要的软件配置按键壁纸和锁屏随机壁纸电源管理终端托盘图标美化 使用 安装 安装i3wm,一般包名叫做i3,包含i3-wm,i3lock和i3status. 在i3wm-config页面下载本配 ...
- ubuntu入门
Ubuntu的发音 Ubuntu,源于非洲祖鲁人和科萨人的语言,发作 oo-boon-too 的音.了解发音是有意义的,您不是第一个为此困惑的人,当然,也不会是最后一个:) 大多数的美国人读 ubun ...
- irc操作小记
IRC客户端 HexChat 跨平台支持,目前正在Windows上使用,暂无不满意的地方 polari 支持的命令太少了,功能有限. Empathy 重量级,支持各种消息协议 weechat/irss ...
- 说一下linux中shell的后台进程与前台进程
环境: 操作系统:archlinux; 终端模拟器:rxvt-unicode(urxvt); shell:bash; 这里所说的后台进程是指在命令行后面加一个 ampersand(&),前台进 ...
- 记录一下我使用的vim的配置文件
还不是很完美: "au BufReadPost * if line("'\"") > 0|if line("'\"") &l ...
随机推荐
- Creating Spatial Indexes(mysql 创建空间索引 The used table type doesn't support SPATIAL indexes)
For MyISAM tables, MySQL can create spatial indexes using syntax similar to that for creating regula ...
- C陷阱与缺陷代码分析之第2章语法陷阱
作者:刘昊昱 博客:http://blog.csdn.net/liuhaoyutz 陷阱1 理解函数声明 作者提出一个问题:有一个首地址为0的函数,该函数返回值类型为void,没有参数.怎样用C语言的 ...
- MFC:重绘Button,定制CButton,自画CPngButton,求赐教(各种bug包括性能bug)谢谢谢谢
[1.]CPngButton.h(资源是最后图片) #pragma once #include<atlimage.h> #define PNUM 19 #define PLAYTIME 1 ...
- C++ 左值 右值
最近在研究C++ 左值 右值,搬运.收集了一些别人的资料,供自己记录和学习,若以后看到了更好的解释,会继续补充.(打“?”是我自己不明白的地方 ) 参考:<Boost程序库探秘——深度解析C ...
- Embedded Linux Primer----嵌入式Linux基础教程--章节介绍
章节介绍 第一章,“导引”,简要介绍了Linux被迅速应用在嵌入式环境的驱动因素,介绍了与嵌入式Linux相关的几个重要的标准和组织. 第二章,“第一个嵌入式经历”,介绍了与后几章所构建的嵌入式Lin ...
- CodeForces 446B DZY Loves Modification
题意: k次操作 每次选择一行或一列 得到所选数字的和 并将所选数字同一时候减去p 问最多得到多少 思路: 重点在消除行列间的相互影响 因为每选一行全部列所相应的和都会-p 那么假设选了i次 ...
- IE Jquery中拒绝訪问的处理方法
多人合作开发一个站点过程中,为便于开发,将一些公共文件如js,css,images放在外网上,各自链接这类文件以供使用.本地測试时网页的一些JS代码在IE8,IE6中会停止运行,并报某个js文件拒绝訪 ...
- python模块介绍- HTMLParser 简单的HTML和XHTML解析器
python模块介绍- HTMLParser 简单的HTML和XHTML解析器 2013-09-11 磁针石 #承接软件自动化实施与培训等gtalk:ouyangchongwu#gmail.comqq ...
- ZYNQ-7000 Unable to connect to ps7_cortexa9 解决方案
图1 开发工具:Xilinx SDk 14.4(基于Eclipse,ISE suite 14.4组件之一) 开发板:Xilinx ZYNQ-7000 zc702 rev 1.0(注意:这个板子的版本说 ...
- commondatastorage.googleapis.com訪问失败高速解决
谷歌更新以后非常多sampleproject下载不了. http://commondatastorage.googleapis.com訪问失败高速解决这个问题. 使用在线代理就可以,随便推荐一个htt ...