new readme

This commit is contained in:
David Chen 2019-11-08 09:36:24 -08:00
parent f4335a8d20
commit b098b88909
3 changed files with 91 additions and 21 deletions

View file

@ -1,8 +1,47 @@
#### fonts # My config...
This config folder includes `i3` and `alacritty` config, however, I'm using [dwm](https://github.com/theniceboy/dwm) and [st](https://github.com/theniceboy/st) now.
# Important stuff:
## Ranger
use `ueberzug` and `ranger-git`
## mutt
In `~/.gnupg/gpg-agent.conf`:
```
default-cache-ttl 34560000
max-cache-ttl 34560000
```
If this doesn't work, try [pam-gnupg](https://github.com/cruegge/pam-gnupg)
```
yay -S pam-gnupg-git
```
and in `/etc/pam.d/system-local-login` add:
```
auth optional pam_gnupg.so
session optional pam_gnupg.so
```
## fonts
- Just install `noto-fonts`. It's already bloated. Check `/usr/share/fonts/noto`
#### Emoji
``` ```
ttf-linux-libertine # probably not actually needed, only aesthetic ttf-linux-libertine # probably not actually needed, only aesthetic
ttf-inconsolata # the monospace font ttf-inconsolata # the monospace font
ttf-emojione ttf-emojione
ttf-symbola ttf-symbola
ttf-joypixels
ttf-twemoji-color
```
#### Chinese
```
wqy-bitmapfont 1.0.0RC1-3
wqy-microhei 0.2.0_beta-9
wqy-microhei-lite 0.2.0_beta-9
wqy-zenhei 0.9.45-7
``` ```
## gtk-theme
I use `adapta-gtk-theme` and `arc-icon-theme`.UUU
## Arch Packages I Installed:
See [my-packages.txt](https://github.com/theniceboy/.config/blob/master/my-packages.txt)

View file

@ -120,7 +120,7 @@ font:
# Point size # Point size
size: 11 size: 16
# Offset is the extra space around each character. `offset.y` can be thought of # Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing. # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -153,34 +153,64 @@ font:
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
# Colors (Dracula) # Colors (Gruvbox dark)
colors: colors:
# Default colors # Default colors
primary: primary:
background: '0x282a36' # hard contrast: background = '0x1d2021'
foreground: '0xf8f8f2' background: '0x282828'
# soft contrast: background = '0x32302f'
foreground: '0xebdbb2'
# Normal colors # Normal colors
normal: normal:
black: '0x000000' black: '0x282828'
red: '0xff5555' red: '0xcc241d'
green: '0x50fa7b' green: '0x98971a'
yellow: '0xf1fa8c' yellow: '0xd79921'
blue: '0xcaa9fa' blue: '0x458588'
magenta: '0xff79c6' magenta: '0xb16286'
cyan: '0x8be9fd' cyan: '0x689d6a'
white: '0xbfbfbf' white: '0xa89984'
# Bright colors # Bright colors
bright: bright:
black: '0x575b70' black: '0x928374'
red: '0xff6e67' red: '0xfb4934'
green: '0x5af78e' green: '0xb8bb26'
yellow: '0xf4f99d' yellow: '0xfabd2f'
blue: '0xcaa9fa' blue: '0x83a598'
magenta: '0xff92d0' magenta: '0xd3869b'
cyan: '0x9aedfe' cyan: '0x8ec07c'
white: '0xe6e6e6' white: '0xebdbb2'
## Colors (Dracula)
#colors:
## Default colors
#primary:
#background: '0x282a36'
#foreground: '0xf8f8f2'
## Normal colors
#normal:
#black: '0x000000'
#red: '0xff5555'
#green: '0x50fa7b'
#yellow: '0xf1fa8c'
#blue: '0xcaa9fa'
#magenta: '0xff79c6'
#cyan: '0x8be9fd'
#white: '0xbfbfbf'
## Bright colors
#bright:
#black: '0x575b70'
#red: '0xff6e67'
#green: '0x5af78e'
#yellow: '0xf4f99d'
#blue: '0xcaa9fa'
#magenta: '0xff92d0'
#cyan: '0x9aedfe'
#white: '0xe6e6e6'
## Colors (Tomorrow Night Bright) ## Colors (Tomorrow Night Bright)
#colors: #colors:
## Default colors ## Default colors

View file

@ -78,4 +78,5 @@ zle -N zle-keymap-select
KEYTIMEOUT=1 KEYTIMEOUT=1
eval "$(pmy init)"
export PMY_TRIGGER_KEY='^t' export PMY_TRIGGER_KEY='^t'