Browse Source

improved urxvt font rendering, improved munzip

master
mort 8 years ago
parent
commit
51356a429f
2 changed files with 18 additions and 11 deletions
  1. 5
    3
      bin/munzip
  2. 13
    8
      dotfiles/Xresources

+ 5
- 3
bin/munzip View File

@@ -6,13 +6,15 @@ if [ "$1" = "" ]; then
fi

if [ "$1" = *.tar.gz ]; then
tar xzf "$1"
tar vxzf "$1"
elif [ "$1" = *.tar.bz2 ]; then
tar jxf "$1"
tar vjxf "$1"
elif [ "$1" = *.tar.xz ]; then
tar xJf "$1"
tar vxJf "$1"
elif [ "$1" = *.zip ]; then
unzip "$1"
elif [ "$1" = *.tgz ]; then
tar vxzf "$1"
else
echo "Unknown format."
exit 1

+ 13
- 8
dotfiles/Xresources View File

@@ -1,11 +1,16 @@
URxvt.termName: xterm-256color
URxvt.scrollBar: off
URxvt.font: xft:Monospace:size=9:antialias=false
URxct.boldFont: xft:Monospace:size=9:antialias=false
URxvt*letterSpace: -0.1:
URxvt.internalBorder: 1xft:
URxvt*selectToClipboard: true
URxvt*saveLines: 100
URxvt.font: xft:Monospace:size=9:antialias=true:hinting=true
URxvt.letterSpace: -1
! XFT and Font settings
Xft.dpi: 96
Xft.antialias: true
Xft.hinting: true
Xft.autohint: true
Xft.hintstyle: hintslight
Xft.lcdfilter: lcdlegacy
Xft.rgba: rgb

URxvt.scrollBar: off

URxvt.perl-ext-common: clipboard
URxvt.clipboard.copycmd: mclip

Loading…
Cancel
Save