Took snapshot of my main dotfiles
This commit is contained in:
commit
8c4a6f932b
522
.gitignore
vendored
Normal file
522
.gitignore
vendored
Normal file
@ -0,0 +1,522 @@
|
||||
#
|
||||
# C
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Object files
|
||||
*.o
|
||||
*.ko
|
||||
*.obj
|
||||
*.elf
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Libraries
|
||||
*.lib
|
||||
*.a
|
||||
*.la
|
||||
*.lo
|
||||
|
||||
# Shared objects (inc. Windows DLLs)
|
||||
*.dll
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.su
|
||||
|
||||
# C++
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
*.smod
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
*.la
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
|
||||
# Java
|
||||
*.class
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
.ssh
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
|
||||
# Python
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
env/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
downloads/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# PyInstaller
|
||||
# Usually these files are written by a python script from a template
|
||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||
*.manifest
|
||||
*.spec
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.coverage
|
||||
.coverage.*
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
*,cover
|
||||
.hypothesis/
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Django stuff:
|
||||
*.log
|
||||
local_settings.py
|
||||
|
||||
# Flask stuff:
|
||||
instance/
|
||||
.webassets-cache
|
||||
|
||||
# Scrapy stuff:
|
||||
.scrapy
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# PyBuilder
|
||||
target/
|
||||
|
||||
# IPython Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# celery beat schedule file
|
||||
celerybeat-schedule
|
||||
|
||||
# dotenv
|
||||
.env
|
||||
|
||||
# virtualenv
|
||||
venv/
|
||||
ENV/
|
||||
|
||||
# Spyder project settings
|
||||
.spyderproject
|
||||
|
||||
# Rope project settings
|
||||
.ropeproject
|
||||
|
||||
# Perl
|
||||
/blib/
|
||||
/.build/
|
||||
_build/
|
||||
cover_db/
|
||||
inc/
|
||||
Build
|
||||
!Build/
|
||||
Build.bat
|
||||
.last_cover_stats
|
||||
/Makefile
|
||||
/Makefile.old
|
||||
/MANIFEST.bak
|
||||
/META.yml
|
||||
/META.json
|
||||
/MYMETA.*
|
||||
nytprof.out
|
||||
/pm_to_blib
|
||||
*.o
|
||||
*.bs
|
||||
/_eumm/
|
||||
|
||||
# Latex
|
||||
## Core latex/pdflatex auxiliary files:
|
||||
*.aux
|
||||
*.lof
|
||||
*.log
|
||||
*.lot
|
||||
*.fls
|
||||
*.out
|
||||
*.toc
|
||||
*.fmt
|
||||
*.fot
|
||||
*.cb
|
||||
*.cb2
|
||||
|
||||
## Intermediate documents:
|
||||
*.dvi
|
||||
*-converted-to.*
|
||||
# these rules might exclude image files for figures etc.
|
||||
# *.ps
|
||||
# *.eps
|
||||
# *.pdf
|
||||
|
||||
## Generated if empty string is given at "Please type another file name for output:"
|
||||
.pdf
|
||||
|
||||
## Bibliography auxiliary files (bibtex/biblatex/biber):
|
||||
*.bbl
|
||||
*.bcf
|
||||
*.blg
|
||||
*-blx.aux
|
||||
*-blx.bib
|
||||
*.brf
|
||||
*.run.xml
|
||||
|
||||
## Build tool auxiliary files:
|
||||
*.fdb_latexmk
|
||||
*.synctex
|
||||
*.synctex(busy)
|
||||
*.synctex.gz
|
||||
*.synctex.gz(busy)
|
||||
*.pdfsync
|
||||
|
||||
## Auxiliary and intermediate files from other packages:
|
||||
# algorithms
|
||||
*.alg
|
||||
*.loa
|
||||
|
||||
# achemso
|
||||
acs-*.bib
|
||||
|
||||
# amsthm
|
||||
*.thm
|
||||
|
||||
# beamer
|
||||
*.nav
|
||||
*.snm
|
||||
*.vrb
|
||||
|
||||
# cprotect
|
||||
*.cpt
|
||||
|
||||
# fixme
|
||||
*.lox
|
||||
|
||||
#(r)(e)ledmac/(r)(e)ledpar
|
||||
*.end
|
||||
*.?end
|
||||
*.[1-9]
|
||||
*.[1-9][0-9]
|
||||
*.[1-9][0-9][0-9]
|
||||
*.[1-9]R
|
||||
*.[1-9][0-9]R
|
||||
*.[1-9][0-9][0-9]R
|
||||
*.eledsec[1-9]
|
||||
*.eledsec[1-9]R
|
||||
*.eledsec[1-9][0-9]
|
||||
*.eledsec[1-9][0-9]R
|
||||
*.eledsec[1-9][0-9][0-9]
|
||||
*.eledsec[1-9][0-9][0-9]R
|
||||
|
||||
# glossaries
|
||||
*.acn
|
||||
*.acr
|
||||
*.glg
|
||||
*.glo
|
||||
*.gls
|
||||
*.glsdefs
|
||||
|
||||
# gnuplottex
|
||||
*-gnuplottex-*
|
||||
|
||||
# gregoriotex
|
||||
*.gaux
|
||||
*.gtex
|
||||
|
||||
# hyperref
|
||||
*.brf
|
||||
|
||||
# knitr
|
||||
*-concordance.tex
|
||||
# TODO Comment the next line if you want to keep your tikz graphics files
|
||||
*.tikz
|
||||
*-tikzDictionary
|
||||
|
||||
# listings
|
||||
*.lol
|
||||
|
||||
# makeidx
|
||||
*.idx
|
||||
*.ilg
|
||||
*.ind
|
||||
*.ist
|
||||
|
||||
# minitoc
|
||||
*.maf
|
||||
*.mlf
|
||||
*.mlt
|
||||
*.mtc
|
||||
*.mtc[0-9]
|
||||
*.mtc[1-9][0-9]
|
||||
|
||||
# minted
|
||||
_minted*
|
||||
*.pyg
|
||||
|
||||
# morewrites
|
||||
*.mw
|
||||
|
||||
# mylatexformat
|
||||
*.fmt
|
||||
|
||||
# nomencl
|
||||
*.nlo
|
||||
|
||||
# sagetex
|
||||
*.sagetex.sage
|
||||
*.sagetex.py
|
||||
*.sagetex.scmd
|
||||
|
||||
# scrwfile
|
||||
*.wrt
|
||||
|
||||
# sympy
|
||||
*.sout
|
||||
*.sympy
|
||||
sympy-plots-for-*.tex/
|
||||
|
||||
# pdfcomment
|
||||
*.upa
|
||||
*.upb
|
||||
|
||||
# pythontex
|
||||
*.pytxcode
|
||||
pythontex-files-*/
|
||||
|
||||
# thmtools
|
||||
*.loe
|
||||
|
||||
# TikZ & PGF
|
||||
*.dpth
|
||||
*.md5
|
||||
*.auxlock
|
||||
|
||||
# todonotes
|
||||
*.tdo
|
||||
|
||||
# easy-todo
|
||||
*.lod
|
||||
|
||||
# xindy
|
||||
*.xdy
|
||||
|
||||
# xypic precompiled matrices
|
||||
*.xyc
|
||||
|
||||
# endfloat
|
||||
*.ttt
|
||||
*.fff
|
||||
|
||||
# Latexian
|
||||
TSWLatexianTemp*
|
||||
|
||||
## Editors:
|
||||
# WinEdt
|
||||
*.bak
|
||||
*.sav
|
||||
|
||||
# Texpad
|
||||
.texpadtmp
|
||||
|
||||
# Kile
|
||||
*.backup
|
||||
|
||||
# KBibTeX
|
||||
*~[0-9]*
|
||||
*~
|
||||
|
||||
# CMake
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
CMakeScripts
|
||||
Makefile
|
||||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
CTestTestfile.cmake
|
||||
|
||||
# Android
|
||||
# Built application files
|
||||
*.apk
|
||||
*.ap_
|
||||
|
||||
# Files for the ART/Dalvik VM
|
||||
*.dex
|
||||
|
||||
# Java class files
|
||||
*.class
|
||||
|
||||
# Generated files
|
||||
#bin/
|
||||
gen/
|
||||
out/
|
||||
|
||||
# Gradle files
|
||||
.gradle/
|
||||
build/
|
||||
|
||||
# Local configuration file (sdk path, etc)
|
||||
local.properties
|
||||
|
||||
# Proguard folder generated by Eclipse
|
||||
proguard/
|
||||
|
||||
# Log Files
|
||||
*.log
|
||||
|
||||
# Android Studio Navigation editor temp files
|
||||
.navigation/
|
||||
|
||||
# Android Studio captures folder
|
||||
captures/
|
||||
|
||||
# Intellij
|
||||
*.iml
|
||||
.idea/workspace.xml
|
||||
.idea/libraries
|
||||
|
||||
# Keystore files
|
||||
*.jks
|
||||
|
||||
#
|
||||
# Packages
|
||||
*.7z
|
||||
*.jar
|
||||
*.rar
|
||||
*.zip
|
||||
*.gz
|
||||
*.bzip
|
||||
*.bz2
|
||||
*.xz
|
||||
*.lzma
|
||||
*.iso
|
||||
*.tar
|
||||
*.dmg
|
||||
*.pkg
|
||||
*.xpi
|
||||
*.gem
|
||||
*.egg
|
||||
*.deb
|
||||
*.rpm
|
||||
|
||||
# LaTeX
|
||||
*.aux
|
||||
*.bbl
|
||||
*.blg
|
||||
*.dvi
|
||||
|
||||
# Emacs
|
||||
\#*#
|
||||
.#*
|
||||
.dir-locals.el
|
||||
|
||||
# Vim
|
||||
*.swp
|
||||
tags
|
||||
.netrwhist
|
||||
view
|
||||
|
||||
# KDE directory preferences
|
||||
.directory
|
||||
|
||||
# Linux trash folder which might appear on any partition or disk
|
||||
.Trash-*
|
||||
|
||||
[._]*.s[a-w][a-z]
|
||||
[._]s[a-w][a-z]
|
||||
*.un~
|
||||
Session.vim
|
||||
.netrwhist
|
||||
*~
|
||||
|
||||
.extra
|
||||
.gnupg
|
||||
!.gnupg/gpg.conf
|
||||
.i3/logfile
|
||||
.irssi/away.log
|
||||
.irssi/config*
|
||||
.irssi/nicknames_whitelist
|
||||
.irssi/otr
|
||||
.irssi/saved_colors
|
||||
.irssi/scripts/autorun/blocker.pl
|
||||
.irssi/startup
|
||||
.rainbow_oauth
|
||||
.nginx/conf.d/*
|
||||
|
||||
# weechat
|
||||
*logs*
|
||||
xfer
|
||||
weechat_fifo*
|
||||
*weechat.log
|
||||
*urlserver_list.txt
|
||||
.weechat/ecdsa.pem
|
23
bash/.bash_profile
Normal file
23
bash/.bash_profile
Normal file
@ -0,0 +1,23 @@
|
||||
# Load the shell dotfiles, and then some:
|
||||
# * ~/.path can be used to extend `$PATH`.
|
||||
# * ~/.extra can be used for other settings you don’t want to commit.
|
||||
|
||||
for file in ~/.{bash_prompt,aliases,functions,path,extra,exports}; do
|
||||
[[ -r "$file" ]] && [[ -f "$file" ]] && source "$file"
|
||||
done
|
||||
unset file
|
||||
|
||||
# Case-insensitive globbing (used in pathname expansion)
|
||||
shopt -s nocaseglob
|
||||
|
||||
# Append to the Bash history file, rather than overwriting it
|
||||
shopt -s histappend
|
||||
|
||||
# Autocorrect typos in path names when using `cd`
|
||||
shopt -s cdspell
|
||||
|
||||
# solarized directory color listings
|
||||
eval `dircolors $HOME/.dir_colors`
|
||||
|
||||
# tmuxifier
|
||||
eval "$(starship init bash)"
|
122
bash/.bash_prompt
Normal file
122
bash/.bash_prompt
Normal file
@ -0,0 +1,122 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Shell prompt based on the Solarized Dark theme.
|
||||
# Screenshot: http://i.imgur.com/EkEtphC.png
|
||||
# Heavily inspired by @necolas’s prompt: https://github.com/necolas/dotfiles
|
||||
# iTerm → Profiles → Text → use 13pt Monaco with 1.1 vertical spacing.
|
||||
|
||||
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then
|
||||
export TERM='gnome-256color';
|
||||
elif infocmp xterm-256color >/dev/null 2>&1; then
|
||||
export TERM='xterm-256color';
|
||||
fi;
|
||||
|
||||
prompt_git() {
|
||||
local s='';
|
||||
local branchName='';
|
||||
|
||||
# Check if the current directory is in a Git repository.
|
||||
if [ $(git rev-parse --is-inside-work-tree &>/dev/null; echo "${?}") == '0' ]; then
|
||||
|
||||
# check if the current directory is in .git before running git checks
|
||||
if [ "$(git rev-parse --is-inside-git-dir 2> /dev/null)" == 'false' ]; then
|
||||
|
||||
# Ensure the index is up to date.
|
||||
git update-index --really-refresh -q &>/dev/null;
|
||||
|
||||
# Check for uncommitted changes in the index.
|
||||
if ! $(git diff --quiet --ignore-submodules --cached); then
|
||||
s+='+';
|
||||
fi;
|
||||
|
||||
# Check for unstaged changes.
|
||||
if ! $(git diff-files --quiet --ignore-submodules --); then
|
||||
s+='!';
|
||||
fi;
|
||||
|
||||
# Check for untracked files.
|
||||
if [ -n "$(git ls-files --others --exclude-standard)" ]; then
|
||||
s+='?';
|
||||
fi;
|
||||
|
||||
# Check for stashed files.
|
||||
if $(git rev-parse --verify refs/stash &>/dev/null); then
|
||||
s+='$';
|
||||
fi;
|
||||
|
||||
fi;
|
||||
|
||||
# Get the short symbolic ref.
|
||||
# If HEAD isn’t a symbolic ref, get the short SHA for the latest commit
|
||||
# Otherwise, just give up.
|
||||
branchName="$(git symbolic-ref --quiet --short HEAD 2> /dev/null || \
|
||||
git rev-parse --short HEAD 2> /dev/null || \
|
||||
echo '(unknown)')";
|
||||
|
||||
[ -n "${s}" ] && s=" [${s}]";
|
||||
|
||||
echo -e "${1}${branchName}${2}${s}";
|
||||
else
|
||||
return;
|
||||
fi;
|
||||
}
|
||||
|
||||
if tput setaf 1 &> /dev/null; then
|
||||
tput sgr0; # reset colors
|
||||
bold=$(tput bold);
|
||||
reset=$(tput sgr0);
|
||||
# Solarized colors, taken from http://git.io/solarized-colors.
|
||||
black=$(tput setaf 0);
|
||||
blue=$(tput setaf 33);
|
||||
cyan=$(tput setaf 37);
|
||||
green=$(tput setaf 64);
|
||||
orange=$(tput setaf 166);
|
||||
purple=$(tput setaf 125);
|
||||
red=$(tput setaf 124);
|
||||
violet=$(tput setaf 61);
|
||||
white=$(tput setaf 15);
|
||||
yellow=$(tput setaf 136);
|
||||
else
|
||||
bold='';
|
||||
reset="\e[0m";
|
||||
black="\e[1;30m";
|
||||
blue="\e[1;34m";
|
||||
cyan="\e[1;36m";
|
||||
green="\e[1;32m";
|
||||
orange="\e[1;33m";
|
||||
purple="\e[1;35m";
|
||||
red="\e[1;31m";
|
||||
violet="\e[1;35m";
|
||||
white="\e[1;37m";
|
||||
yellow="\e[1;33m";
|
||||
fi;
|
||||
|
||||
# Highlight the user name when logged in as root.
|
||||
if [[ "${USER}" == "root" ]]; then
|
||||
userStyle="${red}";
|
||||
else
|
||||
userStyle="${orange}";
|
||||
fi;
|
||||
|
||||
# Highlight the hostname when connected via SSH.
|
||||
if [[ "${SSH_TTY}" ]]; then
|
||||
hostStyle="${bold}${red}";
|
||||
else
|
||||
hostStyle="${yellow}";
|
||||
fi;
|
||||
|
||||
# Set the terminal title and prompt.
|
||||
PS1="\[\033]0;\W\007\]"; # working directory base name
|
||||
PS1+="\[${bold}\]\n"; # newline
|
||||
PS1+="\[${userStyle}\]\u"; # username
|
||||
PS1+="\[${white}\] at ";
|
||||
PS1+="\[${hostStyle}\]\h"; # host
|
||||
PS1+="\[${white}\] in ";
|
||||
PS1+="\[${green}\]\w"; # working directory full path
|
||||
PS1+="\$(prompt_git \"\[${white}\] on \[${violet}\]\" \"\[${blue}\]\")"; # Git repository details
|
||||
PS1+="\n";
|
||||
PS1+="\[${white}\]\$ \[${reset}\]"; # `$` (and reset color)
|
||||
export PS1;
|
||||
|
||||
PS2="\[${yellow}\]→ \[${reset}\]";
|
||||
export PS2;
|
59
bash/.bashrc
Normal file
59
bash/.bashrc
Normal file
@ -0,0 +1,59 @@
|
||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||
# for examples
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
# check the window size after each command and, if necessary,
|
||||
# update the values of LINES and COLUMNS.
|
||||
shopt -s checkwinsize
|
||||
|
||||
# If set, the pattern "**" used in a pathname expansion context will
|
||||
# match all files and zero or more directories and subdirectories.
|
||||
#shopt -s globstar
|
||||
|
||||
# make less more friendly for non-text input files, see lesspipe(1)
|
||||
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||
|
||||
# set a fancy prompt (non-color, unless we know we "want" color)
|
||||
case "$TERM" in
|
||||
xterm-color) color_prompt=yes;;
|
||||
esac
|
||||
|
||||
|
||||
# enable color support of ls and also add handy aliases
|
||||
if [ -x /usr/bin/dircolors ]; then
|
||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||
alias ls='ls --color=auto'
|
||||
alias dir='dir --color=auto'
|
||||
alias vdir='vdir --color=auto'
|
||||
|
||||
alias grep='grep --color=auto'
|
||||
alias fgrep='fgrep --color=auto'
|
||||
alias egrep='egrep --color=auto'
|
||||
fi
|
||||
|
||||
if [[ -f $HOME/.bash_profile ]]; then
|
||||
source $HOME/.bash_profile
|
||||
fi
|
||||
|
||||
# work around for fzf
|
||||
set -o vi
|
||||
|
||||
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||
|
||||
# tmuxifier
|
||||
eval "$(tmuxifier init -)"
|
||||
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
|
||||
export GEM_HOME="$HOME/gems"
|
||||
export PATH="$HOME/gems/bin:$PATH"
|
||||
#source <(/usr/local/bin/starship init zsh --print-full-init)
|
||||
eval "$(starship init bash)"
|
329
emacs/.spacemacs
Normal file
329
emacs/.spacemacs
Normal file
@ -0,0 +1,329 @@
|
||||
;; -*- mode: emacs-lisp -*-
|
||||
;; This file is loaded by Spacemacs at startup.
|
||||
;; It must be stored in your home directory.
|
||||
|
||||
(defun dotspacemacs/layers ()
|
||||
"Configuration Layers declaration.
|
||||
You should not put any user code in this function besides modifying the variable
|
||||
values."
|
||||
(setq-default
|
||||
;; Base distribution to use. This is a layer contained in the directory
|
||||
;; `+distribution'. For now available distributions are `spacemacs-base'
|
||||
;; or `spacemacs'. (default 'spacemacs)
|
||||
dotspacemacs-distribution 'spacemacs
|
||||
;; Lazy installation of layers (i.e. layers are installed only when a file
|
||||
;; with a supported type is opened). Possible values are `all', `unused'
|
||||
;; and `nil'. `unused' will lazy install only unused layers (i.e. layers
|
||||
;; not listed in variable `dotspacemacs-configuration-layers'), `all' will
|
||||
;; lazy install any layer that support lazy installation even the layers
|
||||
;; listed in `dotspacemacs-configuration-layers'. `nil' disable the lazy
|
||||
;; installation feature and you have to explicitly list a layer in the
|
||||
;; variable `dotspacemacs-configuration-layers' to install it.
|
||||
;; (default 'unused)
|
||||
dotspacemacs-enable-lazy-installation 'unused
|
||||
;; If non-nil then Spacemacs will ask for confirmation before installing
|
||||
;; a layer lazily. (default t)
|
||||
dotspacemacs-ask-for-lazy-installation t
|
||||
;; If non-nil layers with lazy install support are lazy installed.
|
||||
;; List of additional paths where to look for configuration layers.
|
||||
;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
|
||||
dotspacemacs-configuration-layer-path '()
|
||||
;; List of configuration layers to load.
|
||||
dotspacemacs-configuration-layers
|
||||
'(
|
||||
;; ----------------------------------------------------------------
|
||||
;; Example of useful layers you may want to use right away.
|
||||
;; Uncomment some layer names and press <SPC f e R> (Vim style) or
|
||||
;; <M-m f e R> (Emacs style) to install them.
|
||||
;; ----------------------------------------------------------------
|
||||
helm
|
||||
;; auto-completion
|
||||
;; better-defaults
|
||||
emacs-lisp
|
||||
;; git
|
||||
;; markdown
|
||||
;; org
|
||||
;; (shell :variables
|
||||
;; shell-default-height 30
|
||||
;; shell-default-position 'bottom)
|
||||
;; spell-checking
|
||||
;; syntax-checking
|
||||
;; version-control
|
||||
)
|
||||
;; List of additional packages that will be installed without being
|
||||
;; wrapped in a layer. If you need some configuration for these
|
||||
;; packages, then consider creating a layer. You can also put the
|
||||
;; configuration in `dotspacemacs/user-config'.
|
||||
dotspacemacs-additional-packages '()
|
||||
;; A list of packages that cannot be updated.
|
||||
dotspacemacs-frozen-packages '()
|
||||
;; A list of packages that will not be installed and loaded.
|
||||
dotspacemacs-excluded-packages '()
|
||||
;; Defines the behaviour of Spacemacs when installing packages.
|
||||
;; Possible values are `used-only', `used-but-keep-unused' and `all'.
|
||||
;; `used-only' installs only explicitly used packages and uninstall any
|
||||
;; unused packages as well as their unused dependencies.
|
||||
;; `used-but-keep-unused' installs only the used packages but won't uninstall
|
||||
;; them if they become unused. `all' installs *all* packages supported by
|
||||
;; Spacemacs and never uninstall them. (default is `used-only')
|
||||
dotspacemacs-install-packages 'used-only))
|
||||
|
||||
(defun dotspacemacs/init ()
|
||||
"Initialization function.
|
||||
This function is called at the very startup of Spacemacs initialization
|
||||
before layers configuration.
|
||||
You should not put any user code in there besides modifying the variable
|
||||
values."
|
||||
;; This setq-default sexp is an exhaustive list of all the supported
|
||||
;; spacemacs settings.
|
||||
(setq-default
|
||||
;; If non nil ELPA repositories are contacted via HTTPS whenever it's
|
||||
;; possible. Set it to nil if you have no way to use HTTPS in your
|
||||
;; environment, otherwise it is strongly recommended to let it set to t.
|
||||
;; This variable has no effect if Emacs is launched with the parameter
|
||||
;; `--insecure' which forces the value of this variable to nil.
|
||||
;; (default t)
|
||||
dotspacemacs-elpa-https t
|
||||
;; Maximum allowed time in seconds to contact an ELPA repository.
|
||||
dotspacemacs-elpa-timeout 5
|
||||
;; If non nil then spacemacs will check for updates at startup
|
||||
;; when the current branch is not `develop'. Note that checking for
|
||||
;; new versions works via git commands, thus it calls GitHub services
|
||||
;; whenever you start Emacs. (default nil)
|
||||
dotspacemacs-check-for-update nil
|
||||
;; If non-nil, a form that evaluates to a package directory. For example, to
|
||||
;; use different package directories for different Emacs versions, set this
|
||||
;; to `emacs-version'.
|
||||
dotspacemacs-elpa-subdirectory nil
|
||||
;; One of `vim', `emacs' or `hybrid'.
|
||||
;; `hybrid' is like `vim' except that `insert state' is replaced by the
|
||||
;; `hybrid state' with `emacs' key bindings. The value can also be a list
|
||||
;; with `:variables' keyword (similar to layers). Check the editing styles
|
||||
;; section of the documentation for details on available variables.
|
||||
;; (default 'vim)
|
||||
dotspacemacs-editing-style 'vim
|
||||
;; If non nil output loading progress in `*Messages*' buffer. (default nil)
|
||||
dotspacemacs-verbose-loading nil
|
||||
;; Specify the startup banner. Default value is `official', it displays
|
||||
;; the official spacemacs logo. An integer value is the index of text
|
||||
;; banner, `random' chooses a random text banner in `core/banners'
|
||||
;; directory. A string value must be a path to an image format supported
|
||||
;; by your Emacs build.
|
||||
;; If the value is nil then no banner is displayed. (default 'official)
|
||||
dotspacemacs-startup-banner 'official
|
||||
;; List of items to show in startup buffer or an association list of
|
||||
;; the form `(list-type . list-size)`. If nil then it is disabled.
|
||||
;; Possible values for list-type are:
|
||||
;; `recents' `bookmarks' `projects' `agenda' `todos'."
|
||||
;; List sizes may be nil, in which case
|
||||
;; `spacemacs-buffer-startup-lists-length' takes effect.
|
||||
dotspacemacs-startup-lists '((recents . 5)
|
||||
(projects . 7))
|
||||
;; True if the home buffer should respond to resize events.
|
||||
dotspacemacs-startup-buffer-responsive t
|
||||
;; Default major mode of the scratch buffer (default `text-mode')
|
||||
dotspacemacs-scratch-mode 'text-mode
|
||||
;; List of themes, the first of the list is loaded when spacemacs starts.
|
||||
;; Press <SPC> T n to cycle to the next theme in the list (works great
|
||||
;; with 2 themes variants, one dark and one light)
|
||||
dotspacemacs-themes '(spacemacs-dark
|
||||
spacemacs-light)
|
||||
;; If non nil the cursor color matches the state color in GUI Emacs.
|
||||
dotspacemacs-colorize-cursor-according-to-state t
|
||||
;; Default font, or prioritized list of fonts. `powerline-scale' allows to
|
||||
;; quickly tweak the mode-line size to make separators look not too crappy.
|
||||
dotspacemacs-default-font '("Source Code Pro"
|
||||
:size 13
|
||||
:weight normal
|
||||
:width normal
|
||||
:powerline-scale 1.1)
|
||||
;; The leader key
|
||||
dotspacemacs-leader-key "SPC"
|
||||
;; The key used for Emacs commands (M-x) (after pressing on the leader key).
|
||||
;; (default "SPC")
|
||||
dotspacemacs-emacs-command-key "SPC"
|
||||
;; The key used for Vim Ex commands (default ":")
|
||||
dotspacemacs-ex-command-key ":"
|
||||
;; The leader key accessible in `emacs state' and `insert state'
|
||||
;; (default "M-m")
|
||||
dotspacemacs-emacs-leader-key "M-m"
|
||||
;; Major mode leader key is a shortcut key which is the equivalent of
|
||||
;; pressing `<leader> m`. Set it to `nil` to disable it. (default ",")
|
||||
dotspacemacs-major-mode-leader-key ","
|
||||
;; Major mode leader key accessible in `emacs state' and `insert state'.
|
||||
;; (default "C-M-m")
|
||||
dotspacemacs-major-mode-emacs-leader-key "C-M-m"
|
||||
;; These variables control whether separate commands are bound in the GUI to
|
||||
;; the key pairs C-i, TAB and C-m, RET.
|
||||
;; Setting it to a non-nil value, allows for separate commands under <C-i>
|
||||
;; and TAB or <C-m> and RET.
|
||||
;; In the terminal, these pairs are generally indistinguishable, so this only
|
||||
;; works in the GUI. (default nil)
|
||||
dotspacemacs-distinguish-gui-tab nil
|
||||
;; If non nil `Y' is remapped to `y$' in Evil states. (default nil)
|
||||
dotspacemacs-remap-Y-to-y$ nil
|
||||
;; If non-nil, the shift mappings `<' and `>' retain visual state if used
|
||||
;; there. (default t)
|
||||
dotspacemacs-retain-visual-state-on-shift t
|
||||
;; If non-nil, J and K move lines up and down when in visual mode.
|
||||
;; (default nil)
|
||||
dotspacemacs-visual-line-move-text nil
|
||||
;; If non nil, inverse the meaning of `g' in `:substitute' Evil ex-command.
|
||||
;; (default nil)
|
||||
dotspacemacs-ex-substitute-global nil
|
||||
;; Name of the default layout (default "Default")
|
||||
dotspacemacs-default-layout-name "Default"
|
||||
;; If non nil the default layout name is displayed in the mode-line.
|
||||
;; (default nil)
|
||||
dotspacemacs-display-default-layout nil
|
||||
;; If non nil then the last auto saved layouts are resume automatically upon
|
||||
;; start. (default nil)
|
||||
dotspacemacs-auto-resume-layouts nil
|
||||
;; Size (in MB) above which spacemacs will prompt to open the large file
|
||||
;; literally to avoid performance issues. Opening a file literally means that
|
||||
;; no major mode or minor modes are active. (default is 1)
|
||||
dotspacemacs-large-file-size 1
|
||||
;; Location where to auto-save files. Possible values are `original' to
|
||||
;; auto-save the file in-place, `cache' to auto-save the file to another
|
||||
;; file stored in the cache directory and `nil' to disable auto-saving.
|
||||
;; (default 'cache)
|
||||
dotspacemacs-auto-save-file-location 'cache
|
||||
;; Maximum number of rollback slots to keep in the cache. (default 5)
|
||||
dotspacemacs-max-rollback-slots 5
|
||||
;; If non nil, `helm' will try to minimize the space it uses. (default nil)
|
||||
dotspacemacs-helm-resize nil
|
||||
;; if non nil, the helm header is hidden when there is only one source.
|
||||
;; (default nil)
|
||||
dotspacemacs-helm-no-header nil
|
||||
;; define the position to display `helm', options are `bottom', `top',
|
||||
;; `left', or `right'. (default 'bottom)
|
||||
dotspacemacs-helm-position 'bottom
|
||||
;; Controls fuzzy matching in helm. If set to `always', force fuzzy matching
|
||||
;; in all non-asynchronous sources. If set to `source', preserve individual
|
||||
;; source settings. Else, disable fuzzy matching in all sources.
|
||||
;; (default 'always)
|
||||
dotspacemacs-helm-use-fuzzy 'always
|
||||
;; If non nil the paste micro-state is enabled. When enabled pressing `p`
|
||||
;; several times cycle between the kill ring content. (default nil)
|
||||
dotspacemacs-enable-paste-transient-state nil
|
||||
;; Which-key delay in seconds. The which-key buffer is the popup listing
|
||||
;; the commands bound to the current keystroke sequence. (default 0.4)
|
||||
dotspacemacs-which-key-delay 0.4
|
||||
;; Which-key frame position. Possible values are `right', `bottom' and
|
||||
;; `right-then-bottom'. right-then-bottom tries to display the frame to the
|
||||
;; right; if there is insufficient space it displays it at the bottom.
|
||||
;; (default 'bottom)
|
||||
dotspacemacs-which-key-position 'bottom
|
||||
;; If non nil a progress bar is displayed when spacemacs is loading. This
|
||||
;; may increase the boot time on some systems and emacs builds, set it to
|
||||
;; nil to boost the loading time. (default t)
|
||||
dotspacemacs-loading-progress-bar t
|
||||
;; If non nil the frame is fullscreen when Emacs starts up. (default nil)
|
||||
;; (Emacs 24.4+ only)
|
||||
dotspacemacs-fullscreen-at-startup nil
|
||||
;; If non nil `spacemacs/toggle-fullscreen' will not use native fullscreen.
|
||||
;; Use to disable fullscreen animations in OSX. (default nil)
|
||||
dotspacemacs-fullscreen-use-non-native nil
|
||||
;; If non nil the frame is maximized when Emacs starts up.
|
||||
;; Takes effect only if `dotspacemacs-fullscreen-at-startup' is nil.
|
||||
;; (default nil) (Emacs 24.4+ only)
|
||||
dotspacemacs-maximized-at-startup nil
|
||||
;; A value from the range (0..100), in increasing opacity, which describes
|
||||
;; the transparency level of a frame when it's active or selected.
|
||||
;; Transparency can be toggled through `toggle-transparency'. (default 90)
|
||||
dotspacemacs-active-transparency 90
|
||||
;; A value from the range (0..100), in increasing opacity, which describes
|
||||
;; the transparency level of a frame when it's inactive or deselected.
|
||||
;; Transparency can be toggled through `toggle-transparency'. (default 90)
|
||||
dotspacemacs-inactive-transparency 90
|
||||
;; If non nil show the titles of transient states. (default t)
|
||||
dotspacemacs-show-transient-state-title t
|
||||
;; If non nil show the color guide hint for transient state keys. (default t)
|
||||
dotspacemacs-show-transient-state-color-guide t
|
||||
;; If non nil unicode symbols are displayed in the mode line. (default t)
|
||||
dotspacemacs-mode-line-unicode-symbols t
|
||||
;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth
|
||||
;; scrolling overrides the default behavior of Emacs which recenters point
|
||||
;; when it reaches the top or bottom of the screen. (default t)
|
||||
dotspacemacs-smooth-scrolling t
|
||||
;; Control line numbers activation.
|
||||
;; If set to `t' or `relative' line numbers are turned on in all `prog-mode' and
|
||||
;; `text-mode' derivatives. If set to `relative', line numbers are relative.
|
||||
;; This variable can also be set to a property list for finer control:
|
||||
;; '(:relative nil
|
||||
;; :disabled-for-modes dired-mode
|
||||
;; doc-view-mode
|
||||
;; markdown-mode
|
||||
;; org-mode
|
||||
;; pdf-view-mode
|
||||
;; text-mode
|
||||
;; :size-limit-kb 1000)
|
||||
;; (default nil)
|
||||
dotspacemacs-line-numbers nil
|
||||
;; Code folding method. Possible values are `evil' and `origami'.
|
||||
;; (default 'evil)
|
||||
dotspacemacs-folding-method 'evil
|
||||
;; If non-nil smartparens-strict-mode will be enabled in programming modes.
|
||||
;; (default nil)
|
||||
dotspacemacs-smartparens-strict-mode nil
|
||||
;; If non-nil pressing the closing parenthesis `)' key in insert mode passes
|
||||
;; over any automatically added closing parenthesis, bracket, quote, etc…
|
||||
;; This can be temporary disabled by pressing `C-q' before `)'. (default nil)
|
||||
dotspacemacs-smart-closing-parenthesis nil
|
||||
;; Select a scope to highlight delimiters. Possible values are `any',
|
||||
;; `current', `all' or `nil'. Default is `all' (highlight any scope and
|
||||
;; emphasis the current one). (default 'all)
|
||||
dotspacemacs-highlight-delimiters 'all
|
||||
;; If non nil, advise quit functions to keep server open when quitting.
|
||||
;; (default nil)
|
||||
dotspacemacs-persistent-server nil
|
||||
;; List of search tool executable names. Spacemacs uses the first installed
|
||||
;; tool of the list. Supported tools are `ag', `pt', `ack' and `grep'.
|
||||
;; (default '("ag" "pt" "ack" "grep"))
|
||||
dotspacemacs-search-tools '("ag" "pt" "ack" "grep")
|
||||
;; The default package repository used if no explicit repository has been
|
||||
;; specified with an installed package.
|
||||
;; Not used for now. (default nil)
|
||||
dotspacemacs-default-package-repository nil
|
||||
;; Delete whitespace while saving buffer. Possible values are `all'
|
||||
;; to aggressively delete empty line and long sequences of whitespace,
|
||||
;; `trailing' to delete only the whitespace at end of lines, `changed'to
|
||||
;; delete only whitespace for changed lines or `nil' to disable cleanup.
|
||||
;; (default nil)
|
||||
dotspacemacs-whitespace-cleanup nil
|
||||
))
|
||||
|
||||
(defun dotspacemacs/user-init ()
|
||||
"Initialization function for user code.
|
||||
It is called immediately after `dotspacemacs/init', before layer configuration
|
||||
executes.
|
||||
This function is mostly useful for variables that need to be set
|
||||
before packages are loaded. If you are unsure, you should try in setting them in
|
||||
`dotspacemacs/user-config' first."
|
||||
)
|
||||
|
||||
(defun dotspacemacs/user-config ()
|
||||
"Configuration function for user code.
|
||||
This function is called at the very end of Spacemacs initialization after
|
||||
layers configuration.
|
||||
This is the place where most of your configurations should be done. Unless it is
|
||||
explicitly specified that a variable should be set before a package is loaded,
|
||||
you should place your code here."
|
||||
)
|
||||
|
||||
;; Do not write anything past this comment. This is where Emacs will
|
||||
;; auto-generate custom variable definitions.
|
||||
(custom-set-variables
|
||||
;; custom-set-variables was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
'(package-selected-packages
|
||||
(quote
|
||||
(evil-unimpaired ws-butler winum which-key volatile-highlights vi-tilde-fringe uuidgen use-package toc-org spaceline powerline restart-emacs request rainbow-delimiters popwin persp-mode pcre2el paradox spinner org-plus-contrib org-bullets open-junk-file neotree move-text macrostep lorem-ipsum linum-relative link-hint info+ indent-guide hydra hungry-delete hl-todo highlight-parentheses highlight-numbers parent-mode highlight-indentation hide-comnt help-fns+ helm-themes helm-swoop helm-projectile helm-mode-manager helm-make projectile pkg-info epl helm-flx helm-descbinds helm-ag google-translate golden-ratio flx-ido flx fill-column-indicator fancy-battery eyebrowse expand-region exec-path-from-shell evil-visualstar evil-visual-mark-mode evil-tutor evil-surround evil-search-highlight-persist evil-numbers evil-nerd-commenter evil-mc evil-matchit evil-lisp-state smartparens evil-indent-plus evil-iedit-state iedit evil-exchange evil-escape evil-ediff evil-args evil-anzu anzu evil goto-chg undo-tree eval-sexp-fu highlight elisp-slime-nav dumb-jump f s diminish define-word column-enforce-mode clean-aindent-mode bind-map bind-key auto-highlight-symbol auto-compile packed dash aggressive-indent adaptive-wrap ace-window ace-link ace-jump-helm-line helm avy helm-core popup async))))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
)
|
45
fonts/LICENSE.md
Normal file
45
fonts/LICENSE.md
Normal file
@ -0,0 +1,45 @@
|
||||
The work in the Hack project is Copyright 2018 Source Foundry Authors and licensed under the MIT License
|
||||
|
||||
The work in the DejaVu project was committed to the public domain.
|
||||
|
||||
Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names "Bitstream" and "Vera"
|
||||
|
||||
### MIT License
|
||||
|
||||
Copyright (c) 2018 Source Foundry Authors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
### BITSTREAM VERA LICENSE
|
||||
|
||||
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.
|
||||
|
||||
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera".
|
||||
|
||||
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names.
|
||||
|
||||
The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.
|
||||
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.
|
48
fonts/README.md
Normal file
48
fonts/README.md
Normal file
@ -0,0 +1,48 @@
|
||||
# Nerd Fonts
|
||||
|
||||
This is an archived font from the Nerd Fonts release v3.1.1.
|
||||
|
||||
For more information see:
|
||||
* https://github.com/ryanoasis/nerd-fonts/
|
||||
* https://github.com/ryanoasis/nerd-fonts/releases/latest/
|
||||
|
||||
# Hack
|
||||
|
||||
A typeface designed for source code.
|
||||
|
||||
For more information have a look at the upstream website: https://github.com/source-foundry/Hack
|
||||
|
||||
Version: 3.003
|
||||
|
||||
## Which font?
|
||||
|
||||
### TL;DR
|
||||
|
||||
* Pick your font family:
|
||||
* If you are limited to monospaced fonts (because of your terminal, etc) then pick a font with `Nerd Font Mono` (or `NFM`).
|
||||
* If you want to have bigger icons (usually around 1.5 normal letters wide) pick a font without `Mono` i.e. `Nerd Font` (or `NF`). Most terminals support this, but ymmv.
|
||||
* If you work in a proportional context (GUI elements or edit a presentation etc) pick a font with `Nerd Font Propo` (or `NFP`).
|
||||
|
||||
### Ligatures
|
||||
|
||||
Ligatures are generally preserved in the patched fonts.
|
||||
Nerd Fonts `v2.0.0` had no ligatures in the `Nerd Font Mono` fonts, this has been dropped with `v2.1.0`.
|
||||
If you have a ligature-aware terminal and don't want ligatures you can (usually) disable them in the terminal settings.
|
||||
|
||||
### Explanation
|
||||
|
||||
Once you narrow down your font choice of family (`Droid Sans`, `Inconsolata`, etc) and style (`bold`, `italic`, etc) you have 2 main choices:
|
||||
|
||||
#### `Option 1: Download already patched font`
|
||||
|
||||
* For a stable version download a font package from the [release page](https://github.com/ryanoasis/nerd-fonts/releases)
|
||||
* Or download the development version from the folders here
|
||||
|
||||
#### `Option 2: Patch your own font`
|
||||
|
||||
* Patch your own variations with the various options provided by the font patcher (i.e. not include all symbols for smaller font size)
|
||||
|
||||
For more information see: [The FAQ](https://github.com/ryanoasis/nerd-fonts/wiki/FAQ-and-Troubleshooting#which-font)
|
||||
|
||||
[SIL-RFN]:http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web_fonts_and_RFNs#14cbfd4a
|
||||
|
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline Bold Italic.ttf
Normal file
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline Bold Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline Bold.ttf
Normal file
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline Italic.ttf
Normal file
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline.ttf
Normal file
BIN
fonts/powerline/AnonymousPro/Anonymice Powerline.ttf
Normal file
Binary file not shown.
96
fonts/powerline/AnonymousPro/LICENSE.txt
Normal file
96
fonts/powerline/AnonymousPro/LICENSE.txt
Normal file
@ -0,0 +1,96 @@
|
||||
Copyright (c) 2009, Mark Simonson
|
||||
(http://www.ms-studio.com, mark@marksimonson.com),
|
||||
with Reserved Font Name Anonymous Pro.
|
||||
Copyright (c) 2013, Kim Silkebækken and Carl X. Su.
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
21
fonts/powerline/AnonymousPro/README.rst
Normal file
21
fonts/powerline/AnonymousPro/README.rst
Normal file
@ -0,0 +1,21 @@
|
||||
Anonymice Powerline
|
||||
===================
|
||||
|
||||
:Font creator: Mark Simonson
|
||||
:Version: 1.002
|
||||
:Source: http://www.marksimonson.com/fonts/view/anonymous-pro
|
||||
:License: SIL OPEN FONT LICENSE Version 1.1
|
||||
:Patched by: `Carl X. Su <https://github.com/bcbcarl>`_
|
||||
|
||||
Anonymous Pro (2009) is a family of four fixed-width fonts designed
|
||||
especially with coding in mind. Characters that could be mistaken for
|
||||
one another (O, 0, I, l, 1, etc.) have distinct shapes to make them
|
||||
easier to tell apart in the context of source code.
|
||||
|
||||
Anonymice Powerline is derived from Anonymous Pro for Powerline users.
|
||||
The Powerline symbols is being made by Kim Silkebækken. The patch work
|
||||
is being undertaken by Carl X. Su.
|
||||
|
||||
Both the final font Truetype/OpenType files and the design files used
|
||||
to produce the font family are distributed under an open licence and
|
||||
you are expressly encouraged to experiment, modify, share and improve.
|
77
fonts/powerline/AnonymousPro/fonts.dir
Normal file
77
fonts/powerline/AnonymousPro/fonts.dir
Normal file
@ -0,0 +1,77 @@
|
||||
76
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice powerline bold italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice powerline bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice powerline italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
77
fonts/powerline/AnonymousPro/fonts.scale
Normal file
77
fonts/powerline/AnonymousPro/fonts.scale
Normal file
@ -0,0 +1,77 @@
|
||||
76
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice Powerline Bold Italic.ttf -misc-anonymice powerline-bold-i-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice Powerline Bold.ttf -misc-anonymice powerline-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice Powerline Italic.ttf -misc-anonymice powerline-medium-i-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Anonymice Powerline.ttf -misc-anonymice powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
BIN
fonts/powerline/Arimo/Arimo Bold Italic for Powerline.ttf
Normal file
BIN
fonts/powerline/Arimo/Arimo Bold Italic for Powerline.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Arimo/Arimo Bold for Powerline.ttf
Normal file
BIN
fonts/powerline/Arimo/Arimo Bold for Powerline.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Arimo/Arimo Italic for Powerline.ttf
Normal file
BIN
fonts/powerline/Arimo/Arimo Italic for Powerline.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Arimo/Arimo for Powerline.ttf
Normal file
BIN
fonts/powerline/Arimo/Arimo for Powerline.ttf
Normal file
Binary file not shown.
13
fonts/powerline/Arimo/LICENSE.txt
Normal file
13
fonts/powerline/Arimo/LICENSE.txt
Normal file
@ -0,0 +1,13 @@
|
||||
Copyright 2010 Google Corp.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
19
fonts/powerline/Arimo/README.rst
Normal file
19
fonts/powerline/Arimo/README.rst
Normal file
@ -0,0 +1,19 @@
|
||||
Arimo Powerline
|
||||
===================
|
||||
|
||||
:Font creator: Steve Matteson
|
||||
:Version: 1.30
|
||||
:Source: https://www.google.com/fonts/specimen/Arimo
|
||||
:License: Apache License, Version 2.0
|
||||
:Patched by: `Loic Pefferkorn <https://github.com/lpefferkorn>`_
|
||||
|
||||
Arimo was designed by Steve Matteson as an innovative, refreshing
|
||||
sans serif design that is metrically compatible with Arial!".
|
||||
Arimo offers improved on-screen readability characteristics and the
|
||||
pan-European WGL character set and solves the needs of developers
|
||||
looking for width-compatible fonts to address document portability
|
||||
across platforms.
|
||||
|
||||
Arimo Powerline is derived from Arimo for Powerline users.
|
||||
The Powerline symbols is being made by Kim Silkebækken. The patch work
|
||||
is being undertaken by Loic Pefferkorn.
|
BIN
fonts/powerline/Cousine/Cousine Bold Italic for Powerline.ttf
Normal file
BIN
fonts/powerline/Cousine/Cousine Bold Italic for Powerline.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Cousine/Cousine Bold for Powerline.ttf
Normal file
BIN
fonts/powerline/Cousine/Cousine Bold for Powerline.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Cousine/Cousine Italic for Powerline.ttf
Normal file
BIN
fonts/powerline/Cousine/Cousine Italic for Powerline.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Cousine/Cousine for Powerline.ttf
Normal file
BIN
fonts/powerline/Cousine/Cousine for Powerline.ttf
Normal file
Binary file not shown.
13
fonts/powerline/Cousine/LICENSE.txt
Normal file
13
fonts/powerline/Cousine/LICENSE.txt
Normal file
@ -0,0 +1,13 @@
|
||||
Copyright 2010 Google Corp.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
19
fonts/powerline/Cousine/README.rst
Normal file
19
fonts/powerline/Cousine/README.rst
Normal file
@ -0,0 +1,19 @@
|
||||
Cousine Powerline
|
||||
=================
|
||||
|
||||
:Font creator: Steve Matteson
|
||||
:Version: 1.21
|
||||
:Source: https://www.google.com/fonts/specimen/Cousine
|
||||
:License: Apache License, Version 2.0
|
||||
:Patched by: `Loic Pefferkorn <https://github.com/lpefferkorn>`_
|
||||
|
||||
Cousine was designed by Steve Matteson as an innovative,
|
||||
refreshing sans serif design that is metrically compatible
|
||||
with Courier New™. Cousine offers improved on-screen readability
|
||||
characteristics and the pan-European WGL character set and solves
|
||||
the needs of developers looking for width-compatible fonts
|
||||
to address document portability across platforms.
|
||||
|
||||
Cousine Powerline is derived from Cousine for Powerline users.
|
||||
The Powerline symbols is being made by Kim Silkebækken. The patch work
|
||||
is being undertaken by Loic Pefferkorn.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
97
fonts/powerline/DejaVuSansMono/LICENSE.txt
Normal file
97
fonts/powerline/DejaVuSansMono/LICENSE.txt
Normal file
@ -0,0 +1,97 @@
|
||||
Fonts are (c) Bitstream (see below). DejaVu changes are in public domain.
|
||||
Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below)
|
||||
|
||||
Bitstream Vera Fonts Copyright
|
||||
------------------------------
|
||||
|
||||
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is
|
||||
a trademark of Bitstream, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of the fonts accompanying this license ("Fonts") and associated
|
||||
documentation files (the "Font Software"), to reproduce and distribute the
|
||||
Font Software, including without limitation the rights to use, copy, merge,
|
||||
publish, distribute, and/or sell copies of the Font Software, and to permit
|
||||
persons to whom the Font Software is furnished to do so, subject to the
|
||||
following conditions:
|
||||
|
||||
The above copyright and trademark notices and this permission notice shall
|
||||
be included in all copies of one or more of the Font Software typefaces.
|
||||
|
||||
The Font Software may be modified, altered, or added to, and in particular
|
||||
the designs of glyphs or characters in the Fonts may be modified and
|
||||
additional glyphs or characters may be added to the Fonts, only if the fonts
|
||||
are renamed to names not containing either the words "Bitstream" or the word
|
||||
"Vera".
|
||||
|
||||
This License becomes null and void to the extent applicable to Fonts or Font
|
||||
Software that has been modified and is distributed under the "Bitstream
|
||||
Vera" names.
|
||||
|
||||
The Font Software may be sold as part of a larger software package but no
|
||||
copy of one or more of the Font Software typefaces may be sold by itself.
|
||||
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT,
|
||||
TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME
|
||||
FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING
|
||||
ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
||||
THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE
|
||||
FONT SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the names of Gnome, the Gnome
|
||||
Foundation, and Bitstream Inc., shall not be used in advertising or
|
||||
otherwise to promote the sale, use or other dealings in this Font Software
|
||||
without prior written authorization from the Gnome Foundation or Bitstream
|
||||
Inc., respectively. For further information, contact: fonts at gnome dot
|
||||
org.
|
||||
|
||||
Arev Fonts Copyright
|
||||
------------------------------
|
||||
|
||||
Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the fonts accompanying this license ("Fonts") and
|
||||
associated documentation files (the "Font Software"), to reproduce
|
||||
and distribute the modifications to the Bitstream Vera Font Software,
|
||||
including without limitation the rights to use, copy, merge, publish,
|
||||
distribute, and/or sell copies of the Font Software, and to permit
|
||||
persons to whom the Font Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright and trademark notices and this permission notice
|
||||
shall be included in all copies of one or more of the Font Software
|
||||
typefaces.
|
||||
|
||||
The Font Software may be modified, altered, or added to, and in
|
||||
particular the designs of glyphs or characters in the Fonts may be
|
||||
modified and additional glyphs or characters may be added to the
|
||||
Fonts, only if the fonts are renamed to names not containing either
|
||||
the words "Tavmjong Bah" or the word "Arev".
|
||||
|
||||
This License becomes null and void to the extent applicable to Fonts
|
||||
or Font Software that has been modified and is distributed under the
|
||||
"Tavmjong Bah Arev" names.
|
||||
|
||||
The Font Software may be sold as part of a larger software package but
|
||||
no copy of one or more of the Font Software typefaces may be sold by
|
||||
itself.
|
||||
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL
|
||||
TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name of Tavmjong Bah shall not
|
||||
be used in advertising or otherwise to promote the sale, use or other
|
||||
dealings in this Font Software without prior written authorization
|
||||
from Tavmjong Bah. For further information, contact: tavmjong @ free
|
||||
. fr.
|
6
fonts/powerline/DejaVuSansMono/README.rst
Normal file
6
fonts/powerline/DejaVuSansMono/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
DejaVu Sans Mono for Powerline
|
||||
==============================
|
||||
|
||||
:Font creator: Roy Y.T. Chen
|
||||
:Source: http://dejavu-fonts.org/wiki/Main_Page
|
||||
:Patched by: `dbrgn <https://github.com/dbrgn>`_
|
89
fonts/powerline/DejaVuSansMono/fonts.dir
Normal file
89
fonts/powerline/DejaVuSansMono/fonts.dir
Normal file
@ -0,0 +1,89 @@
|
||||
88
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-6.16
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-6.8x
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu sans mono bold for powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-suneu-greek
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu sans mono bold oblique for powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-suneu-greek
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp437
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp850
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp852
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp866
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-6.16
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-6.8x
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu sans mono for powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-suneu-greek
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp437
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp850
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp852
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp866
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu sans mono oblique for powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-suneu-greek
|
89
fonts/powerline/DejaVuSansMono/fonts.scale
Normal file
89
fonts/powerline/DejaVuSansMono/fonts.scale
Normal file
@ -0,0 +1,89 @@
|
||||
88
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu Sans Mono Bold Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-bold-o-normal--0-0-0-0-m-0-suneu-greek
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-6.16
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-6.8x
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu Sans Mono Bold for Powerline.ttf -misc-dejavu sans mono for powerline-bold-r-normal--0-0-0-0-m-0-suneu-greek
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp437
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp850
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp852
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-ibm-cp866
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu Sans Mono Oblique for Powerline.ttf -misc-dejavu sans mono for powerline-medium-o-normal--0-0-0-0-m-0-suneu-greek
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp437
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp850
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp852
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ibm-cp866
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-6.16
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-6.8x
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
||||
DejaVu Sans Mono for Powerline.ttf -misc-dejavu sans mono for powerline-medium-r-normal--0-0-0-0-m-0-suneu-greek
|
BIN
fonts/powerline/DroidSansMono/Droid Sans Mono for Powerline.otf
Normal file
BIN
fonts/powerline/DroidSansMono/Droid Sans Mono for Powerline.otf
Normal file
Binary file not shown.
13
fonts/powerline/DroidSansMono/LICENSE.txt
Normal file
13
fonts/powerline/DroidSansMono/LICENSE.txt
Normal file
@ -0,0 +1,13 @@
|
||||
Copyright 2006, 2007, 2008, 2009, 2010 Google Corp.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
6
fonts/powerline/DroidSansMono/README.rst
Normal file
6
fonts/powerline/DroidSansMono/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
Droid Sans Mono for Powerline
|
||||
=============================
|
||||
|
||||
:Font creator: Ascender Corporation
|
||||
:Source: Provided by system
|
||||
:Patched by: `mt3 <https://github.com/mt3>`_
|
19
fonts/powerline/DroidSansMono/fonts.dir
Normal file
19
fonts/powerline/DroidSansMono/fonts.dir
Normal file
@ -0,0 +1,19 @@
|
||||
18
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Droid sans mono for powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
19
fonts/powerline/DroidSansMono/fonts.scale
Normal file
19
fonts/powerline/DroidSansMono/fonts.scale
Normal file
@ -0,0 +1,19 @@
|
||||
18
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-16
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Droid Sans Mono for Powerline.otf -misc-droid sans mono for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
Binary file not shown.
18
fonts/powerline/DroidSansMonoDotted/LICENSE.txt
Normal file
18
fonts/powerline/DroidSansMonoDotted/LICENSE.txt
Normal file
@ -0,0 +1,18 @@
|
||||
Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
##########
|
||||
|
||||
This directory contains the fonts for the platform. They are licensed
|
||||
under the Apache 2 license.
|
6
fonts/powerline/DroidSansMonoDotted/README.rst
Normal file
6
fonts/powerline/DroidSansMonoDotted/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
Droid Sans Mono Dotted for Powerline
|
||||
====================================
|
||||
|
||||
:Font creator: Ascender Corporation (modified by Cosmix)
|
||||
:Source: http://www.cosmix.org/software/
|
||||
:Patched by: `toiffel <https://github.com/toiffel>`_
|
19
fonts/powerline/DroidSansMonoDotted/fonts.dir
Normal file
19
fonts/powerline/DroidSansMonoDotted/fonts.dir
Normal file
@ -0,0 +1,19 @@
|
||||
18
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Droid sans mono dotted for powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
19
fonts/powerline/DroidSansMonoDotted/fonts.scale
Normal file
19
fonts/powerline/DroidSansMonoDotted/fonts.scale
Normal file
@ -0,0 +1,19 @@
|
||||
18
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Droid Sans Mono Dotted for Powerline.ttf -misc-droid sans mono dotted for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
Binary file not shown.
18
fonts/powerline/DroidSansMonoSlashed/LICENSE.txt
Normal file
18
fonts/powerline/DroidSansMonoSlashed/LICENSE.txt
Normal file
@ -0,0 +1,18 @@
|
||||
Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
##########
|
||||
|
||||
This directory contains the fonts for the platform. They are licensed
|
||||
under the Apache 2 license.
|
6
fonts/powerline/DroidSansMonoSlashed/README.rst
Normal file
6
fonts/powerline/DroidSansMonoSlashed/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
Droid Sans Mono Slashed for Powerline
|
||||
=====================================
|
||||
|
||||
:Font creator: Ascender Corporation (modified by Cosmix)
|
||||
:Source: http://www.cosmix.org/software/
|
||||
:Patched by: `toiffel <https://github.com/toiffel>`_
|
19
fonts/powerline/DroidSansMonoSlashed/fonts.dir
Normal file
19
fonts/powerline/DroidSansMonoSlashed/fonts.dir
Normal file
@ -0,0 +1,19 @@
|
||||
18
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Droid sans mono slashed for powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
19
fonts/powerline/DroidSansMonoSlashed/fonts.scale
Normal file
19
fonts/powerline/DroidSansMonoSlashed/fonts.scale
Normal file
@ -0,0 +1,19 @@
|
||||
18
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-adobe-standard
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-10
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-13
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-3
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-4
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-5
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-e
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-r
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-ru
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-u
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-koi8-uni
|
||||
Droid Sans Mono Slashed for Powerline.ttf -misc-droid sans mono slashed for powerline-medium-r-normal--0-0-0-0-m-0-microsoft-cp1252
|
BIN
fonts/powerline/FiraMono/FuraMono-Bold Powerline.otf
Normal file
BIN
fonts/powerline/FiraMono/FuraMono-Bold Powerline.otf
Normal file
Binary file not shown.
BIN
fonts/powerline/FiraMono/FuraMono-Medium Powerline.otf
Normal file
BIN
fonts/powerline/FiraMono/FuraMono-Medium Powerline.otf
Normal file
Binary file not shown.
BIN
fonts/powerline/FiraMono/FuraMono-Regular Powerline.otf
Normal file
BIN
fonts/powerline/FiraMono/FuraMono-Regular Powerline.otf
Normal file
Binary file not shown.
99
fonts/powerline/FiraMono/LICENSE.txt
Normal file
99
fonts/powerline/FiraMono/LICENSE.txt
Normal file
@ -0,0 +1,99 @@
|
||||
Copyright (c) 2014, Mozilla Foundation https://mozilla.org/
|
||||
with Reserved Font Name Fira Sans.
|
||||
|
||||
Copyright (c) 2014, Mozilla Foundation https://mozilla.org/
|
||||
with Reserved Font Name Fira Mono.
|
||||
|
||||
Copyright (c) 2014, Telefonica S.A.
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
16
fonts/powerline/FiraMono/README.rst
Normal file
16
fonts/powerline/FiraMono/README.rst
Normal file
@ -0,0 +1,16 @@
|
||||
Fura Powerline
|
||||
==============
|
||||
|
||||
:Font creator: Erik Spiekermann, Ralph du Carrois (Carrois Type Design, Mozilla Foundation)
|
||||
:Version: 3.111
|
||||
:Source: https://github.com/mozilla/Fira
|
||||
:License: SIL OPEN FONT LICENSE Version 1.1
|
||||
:Patched by: `Pablo Olmos de Aguilera C. <https://github.com/PaBLoX-CL>`_
|
||||
|
||||
Designed to integrate with the character of the Mozilla FirefoxOS, the Fira
|
||||
typefaces also aim to cover the legibility needs for a large range of handsets
|
||||
varying in screen quality and rendering.
|
||||
|
||||
Fura Powerline is derived from Fira Sans for Powerline users. The Powerlin Kim
|
||||
Silkebækken. The patch work is being undertaken by Carl X. Su. symbols is
|
||||
being made by Pablo Olmos de Aguilera C.
|
67
fonts/powerline/FiraMono/fonts.dir
Normal file
67
fonts/powerline/FiraMono/fonts.dir
Normal file
@ -0,0 +1,67 @@
|
||||
66
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ascii-0
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-e
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-r
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-u
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
FuraMono-Bold powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
FuraMono-Medium powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
FuraMono-Regular powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
67
fonts/powerline/FiraMono/fonts.scale
Normal file
67
fonts/powerline/FiraMono/fonts.scale
Normal file
@ -0,0 +1,67 @@
|
||||
66
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ascii-0
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-e
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-r
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-u
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
FuraMono-Bold Powerline.otf -misc-fira mono for powerline-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
FuraMono-Medium Powerline.otf -misc-fira mono medium for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
FuraMono-Regular Powerline.otf -misc-fira mono for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
BIN
fonts/powerline/Hack/Hack-Bold.ttf
Normal file
BIN
fonts/powerline/Hack/Hack-Bold.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Hack/Hack-BoldItalic.ttf
Normal file
BIN
fonts/powerline/Hack/Hack-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Hack/Hack-Italic.ttf
Normal file
BIN
fonts/powerline/Hack/Hack-Italic.ttf
Normal file
Binary file not shown.
BIN
fonts/powerline/Hack/Hack-Regular.ttf
Normal file
BIN
fonts/powerline/Hack/Hack-Regular.ttf
Normal file
Binary file not shown.
103
fonts/powerline/Hack/LICENSE.txt
Normal file
103
fonts/powerline/Hack/LICENSE.txt
Normal file
@ -0,0 +1,103 @@
|
||||
LICENSE
|
||||
|
||||
Hack Copyright 2015, Christopher Simpkins with Reserved Font Name Hack.
|
||||
|
||||
Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names Bitstream and Vera
|
||||
|
||||
DejaVu modifications of the original Bitstream Vera Sans Mono typeface have been committed to the public domain.
|
||||
|
||||
|
||||
|
||||
This Font Software is licensed under the Hack Open Font License and the Bitstream Vera License.
|
||||
|
||||
These licenses are copied below.
|
||||
|
||||
|
||||
HACK OPEN FONT LICENSE
|
||||
|
||||
(Version v.1.0 - 06 September 2015)
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder(s).
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed under this license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
|
||||
|
||||
|
||||
BITSTREAM VERA LICENSE
|
||||
|
||||
Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces.
|
||||
|
||||
The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera".
|
||||
|
||||
This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names.
|
||||
|
||||
The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself.
|
||||
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org.
|
14
fonts/powerline/Hack/README.rst
Normal file
14
fonts/powerline/Hack/README.rst
Normal file
@ -0,0 +1,14 @@
|
||||
Hack (for Powerline)
|
||||
=========================
|
||||
|
||||
:Font creator: Christopher Simpkins
|
||||
:Version: 2.013
|
||||
:Source: https://github.com/chrissimpkins/Hack
|
||||
:License: Hack Open Font License + Bitstream Vera license
|
||||
:License URL: https://github.com/chrissimpkins/Hack/blob/master/LICENSE.md
|
||||
:Patched by: `Christopher Simpkins <https://github.com/chrissimpkins/Hack>`_
|
||||
|
||||
|
||||
Hack is a derivative of the Bitstream Vera Sans Mono and DejaVu Sans Mono glyph sets that includes new glyph shapes and adjustments to the weight and metrics of the typeface. The Powerline glyphs were patched into the Regular release set by the developer and are released on the source repository in a patched form by default.
|
||||
|
||||
It is not necessary to add 'for Powerline' to the Hack family name when you use this typeface in Powerline.
|
BIN
fonts/powerline/Hack/hack-specimen-for-Powerline.png
Normal file
BIN
fonts/powerline/Hack/hack-specimen-for-Powerline.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 KiB |
BIN
fonts/powerline/Inconsolata-g/Inconsolata-g for Powerline.otf
Normal file
BIN
fonts/powerline/Inconsolata-g/Inconsolata-g for Powerline.otf
Normal file
Binary file not shown.
98
fonts/powerline/Inconsolata-g/LICENSE.txt
Normal file
98
fonts/powerline/Inconsolata-g/LICENSE.txt
Normal file
@ -0,0 +1,98 @@
|
||||
This Font Software is Copyright (c) 2006, Raph Levien.
|
||||
All Rights Reserved.
|
||||
Copyright (c) 2009, David Zhou (http://nodnod.net/).
|
||||
Copyright (c) 2009, Leonardo Maffi (http://www.fantascienza.net/leonardo/).
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.0.
|
||||
No modification of the license is permitted, only verbatim copy is allowed.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of cooperative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide an open
|
||||
framework in which fonts may be shared and improved in partnership with
|
||||
others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and sold with any software provided that the font
|
||||
names of derivative works are changed. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to any and all of the following:
|
||||
- font files
|
||||
- data files
|
||||
- source code
|
||||
- build scripts
|
||||
- documentation
|
||||
|
||||
"Reserved Font Name" refers to the Font Software name as seen by
|
||||
users and any other names as specified after the copyright statement.
|
||||
|
||||
"Standard Version" refers to the collection of Font Software
|
||||
components as distributed by the Copyright Holder.
|
||||
|
||||
"Modified Version" refers to any derivative font software made by
|
||||
adding to, deleting, or substituting -- in part or in whole --
|
||||
any of the components of the Standard Version, by changing formats
|
||||
or by porting the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Standard or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Standard or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s), in part or in whole, unless explicit written permission is
|
||||
granted by the Copyright Holder. This restriction applies to all
|
||||
references stored in the Font Software, such as the font menu name and
|
||||
other font description fields, which are used to differentiate the
|
||||
font from others.
|
||||
|
||||
4) The name(s) of the Copyright Holder or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed using this license, and may not be distributed
|
||||
under any other license.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
6
fonts/powerline/Inconsolata-g/README.rst
Normal file
6
fonts/powerline/Inconsolata-g/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
Inconsolata for Powerline
|
||||
=========================
|
||||
|
||||
:Font creator: Ralph Levien (modified by Leonardo Maffi)
|
||||
:Source: http://leonardo-m.livejournal.com/77079.html
|
||||
:Patched by: `PaBLoX_CL <https://github.com/PaBLoX-CL>`_
|
7
fonts/powerline/Inconsolata-g/fonts.dir
Normal file
7
fonts/powerline/Inconsolata-g/fonts.dir
Normal file
@ -0,0 +1,7 @@
|
||||
6
|
||||
Inconsolata-g for powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Inconsolata-g for powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Inconsolata-g for powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Inconsolata-g for powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Inconsolata-g for powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Inconsolata-g for powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
7
fonts/powerline/Inconsolata-g/fonts.scale
Normal file
7
fonts/powerline/Inconsolata-g/fonts.scale
Normal file
@ -0,0 +1,7 @@
|
||||
6
|
||||
Inconsolata-g for Powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Inconsolata-g for Powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Inconsolata-g for Powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Inconsolata-g for Powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Inconsolata-g for Powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Inconsolata-g for Powerline.otf -misc-inconsolata g for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
BIN
fonts/powerline/Inconsolata/Inconsolata for Powerline.otf
Normal file
BIN
fonts/powerline/Inconsolata/Inconsolata for Powerline.otf
Normal file
Binary file not shown.
96
fonts/powerline/Inconsolata/LICENSE.txt
Normal file
96
fonts/powerline/Inconsolata/LICENSE.txt
Normal file
@ -0,0 +1,96 @@
|
||||
This Font Software is Copyright (c) 2006, Raph Levien.
|
||||
All Rights Reserved.
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.0.
|
||||
No modification of the license is permitted, only verbatim copy is allowed.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of cooperative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide an open
|
||||
framework in which fonts may be shared and improved in partnership with
|
||||
others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and sold with any software provided that the font
|
||||
names of derivative works are changed. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to any and all of the following:
|
||||
- font files
|
||||
- data files
|
||||
- source code
|
||||
- build scripts
|
||||
- documentation
|
||||
|
||||
"Reserved Font Name" refers to the Font Software name as seen by
|
||||
users and any other names as specified after the copyright statement.
|
||||
|
||||
"Standard Version" refers to the collection of Font Software
|
||||
components as distributed by the Copyright Holder.
|
||||
|
||||
"Modified Version" refers to any derivative font software made by
|
||||
adding to, deleting, or substituting -- in part or in whole --
|
||||
any of the components of the Standard Version, by changing formats
|
||||
or by porting the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Standard or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Standard or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s), in part or in whole, unless explicit written permission is
|
||||
granted by the Copyright Holder. This restriction applies to all
|
||||
references stored in the Font Software, such as the font menu name and
|
||||
other font description fields, which are used to differentiate the
|
||||
font from others.
|
||||
|
||||
4) The name(s) of the Copyright Holder or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed using this license, and may not be distributed
|
||||
under any other license.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
6
fonts/powerline/Inconsolata/README.rst
Normal file
6
fonts/powerline/Inconsolata/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
Inconsolata for Powerline
|
||||
=========================
|
||||
|
||||
:Font creator: Raph Levien
|
||||
:Source: http://levien.com/type/myfonts/inconsolata.html
|
||||
:Patched by: `Kha <https://github.com/Kha>`_
|
7
fonts/powerline/Inconsolata/fonts.dir
Normal file
7
fonts/powerline/Inconsolata/fonts.dir
Normal file
@ -0,0 +1,7 @@
|
||||
6
|
||||
Inconsolata for powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Inconsolata for powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Inconsolata for powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Inconsolata for powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Inconsolata for powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Inconsolata for powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
7
fonts/powerline/Inconsolata/fonts.scale
Normal file
7
fonts/powerline/Inconsolata/fonts.scale
Normal file
@ -0,0 +1,7 @@
|
||||
6
|
||||
Inconsolata for Powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Inconsolata for Powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Inconsolata for Powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Inconsolata for Powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Inconsolata for Powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Inconsolata for Powerline.otf -misc-inconsolata for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
BIN
fonts/powerline/InconsolataDz/Inconsolata-dz for Powerline.otf
Normal file
BIN
fonts/powerline/InconsolataDz/Inconsolata-dz for Powerline.otf
Normal file
Binary file not shown.
97
fonts/powerline/InconsolataDz/LICENSE.txt
Normal file
97
fonts/powerline/InconsolataDz/LICENSE.txt
Normal file
@ -0,0 +1,97 @@
|
||||
This Font Software is Copyright (c) 2006, Raph Levien.
|
||||
All Rights Reserved.
|
||||
Copyright (c) 2009, David Zhou (http://nodnod.net/).
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.0.
|
||||
No modification of the license is permitted, only verbatim copy is allowed.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of cooperative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide an open
|
||||
framework in which fonts may be shared and improved in partnership with
|
||||
others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and sold with any software provided that the font
|
||||
names of derivative works are changed. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to any and all of the following:
|
||||
- font files
|
||||
- data files
|
||||
- source code
|
||||
- build scripts
|
||||
- documentation
|
||||
|
||||
"Reserved Font Name" refers to the Font Software name as seen by
|
||||
users and any other names as specified after the copyright statement.
|
||||
|
||||
"Standard Version" refers to the collection of Font Software
|
||||
components as distributed by the Copyright Holder.
|
||||
|
||||
"Modified Version" refers to any derivative font software made by
|
||||
adding to, deleting, or substituting -- in part or in whole --
|
||||
any of the components of the Standard Version, by changing formats
|
||||
or by porting the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Standard or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Standard or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s), in part or in whole, unless explicit written permission is
|
||||
granted by the Copyright Holder. This restriction applies to all
|
||||
references stored in the Font Software, such as the font menu name and
|
||||
other font description fields, which are used to differentiate the
|
||||
font from others.
|
||||
|
||||
4) The name(s) of the Copyright Holder or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed using this license, and may not be distributed
|
||||
under any other license.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
6
fonts/powerline/InconsolataDz/README.rst
Normal file
6
fonts/powerline/InconsolataDz/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
Inconsolata-dz for Powerline
|
||||
============================
|
||||
|
||||
:Font creator: Raph Levien
|
||||
:Source: http://nodnod.net/2009/feb/12/adding-straight-single-and-double-quotes-inconsola/
|
||||
:Patched by: `Faun <https://github.com/faun>`_
|
7
fonts/powerline/InconsolataDz/fonts.dir
Normal file
7
fonts/powerline/InconsolataDz/fonts.dir
Normal file
@ -0,0 +1,7 @@
|
||||
6
|
||||
Inconsolata-dz for powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Inconsolata-dz for powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Inconsolata-dz for powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Inconsolata-dz for powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Inconsolata-dz for powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Inconsolata-dz for powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
7
fonts/powerline/InconsolataDz/fonts.scale
Normal file
7
fonts/powerline/InconsolataDz/fonts.scale
Normal file
@ -0,0 +1,7 @@
|
||||
6
|
||||
Inconsolata-dz for Powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-ascii-0
|
||||
Inconsolata-dz for Powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso10646-1
|
||||
Inconsolata-dz for Powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-1
|
||||
Inconsolata-dz for Powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-15
|
||||
Inconsolata-dz for Powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-2
|
||||
Inconsolata-dz for Powerline.otf -misc-inconsolata dz for powerline-medium-r-normal--0-0-0-0-m-0-iso8859-9
|
5
fonts/powerline/InputMono/README.rst
Normal file
5
fonts/powerline/InputMono/README.rst
Normal file
@ -0,0 +1,5 @@
|
||||
Input Mono
|
||||
==========
|
||||
|
||||
Input Mono is officially supported by the font creator, with custom drawn glyphs
|
||||
for Powerline. Download the font from http://input.fontbureau.com/!
|
102
fonts/powerline/LiberationMono/LICENSE.txt
Normal file
102
fonts/powerline/LiberationMono/LICENSE.txt
Normal file
@ -0,0 +1,102 @@
|
||||
Digitized data copyright (c) 2010 Google Corporation
|
||||
with Reserved Font Arimo, Tinos and Cousine.
|
||||
Copyright (c) 2012 Red Hat, Inc.
|
||||
with Reserved Font Name Liberation.
|
||||
Copyright (c) 2013, Kim Silkebækken and Carl X. Su.
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License,
|
||||
Version 1.1.
|
||||
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
|
||||
PREAMBLE The goals of the Open Font License (OFL) are to stimulate
|
||||
worldwide development of collaborative font projects, to support the font
|
||||
creation efforts of academic and linguistic communities, and to provide
|
||||
a free and open framework in which fonts may be shared and improved in
|
||||
partnership with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves.
|
||||
The fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply to
|
||||
any document created using the fonts or their derivatives.
|
||||
|
||||
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such.
|
||||
This may include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components
|
||||
as distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting ? in part or in whole ?
|
||||
any of the components of the Original Version, by changing formats or
|
||||
by porting the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical writer
|
||||
or other person who contributed to the Font Software.
|
||||
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a
|
||||
copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,in
|
||||
Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the
|
||||
corresponding Copyright Holder. This restriction only applies to the
|
||||
primary font name as presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole, must
|
||||
be distributed entirely under this license, and must not be distributed
|
||||
under any other license. The requirement for fonts to remain under
|
||||
this license does not apply to any document created using the Font
|
||||
Software.
|
||||
|
||||
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are not met.
|
||||
|
||||
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
|
||||
DEALINGS IN THE FONT SOFTWARE.
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
fonts/powerline/LiberationMono/Literation Mono Powerline.ttf
Normal file
BIN
fonts/powerline/LiberationMono/Literation Mono Powerline.ttf
Normal file
Binary file not shown.
19
fonts/powerline/LiberationMono/README.rst
Normal file
19
fonts/powerline/LiberationMono/README.rst
Normal file
@ -0,0 +1,19 @@
|
||||
Literation Mono Powerline
|
||||
=========================
|
||||
|
||||
:Font creator: Steve Mattesen
|
||||
:Version: 2.00.1
|
||||
:Source: https://fedorahosted.org/liberation-fonts/
|
||||
:License: SIL OPEN FONT LICENSE Version 1.1
|
||||
:Patched by: `Carl X. Su <https://github.com/bcbcarl>`_
|
||||
|
||||
The Liberation Fonts is font collection which aims to provide document
|
||||
layout compatibility as usage of Times New Roman, Arial, Courier New.
|
||||
|
||||
Literation Mono Powerline is derived from The Liberation Fonts for
|
||||
Powerline users. The Powerline symbols is being made by Kim
|
||||
Silkebækken. The patch work is being undertaken by Carl X. Su.
|
||||
|
||||
Both the final font Truetype/OpenType files and the design files used
|
||||
to produce the font family are distributed under an open licence and
|
||||
you are expressly encouraged to experiment, modify, share and improve.
|
101
fonts/powerline/LiberationMono/fonts.dir
Normal file
101
fonts/powerline/LiberationMono/fonts.dir
Normal file
@ -0,0 +1,101 @@
|
||||
100
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation mono powerline bold italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-suneu-greek
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation mono powerline bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation mono powerline italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-suneu-greek
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation mono powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
101
fonts/powerline/LiberationMono/fonts.scale
Normal file
101
fonts/powerline/LiberationMono/fonts.scale
Normal file
@ -0,0 +1,101 @@
|
||||
100
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation Mono Powerline Bold Italic.ttf -misc-literation mono powerline-bold-i-normal--0-0-0-0-p-0-suneu-greek
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation Mono Powerline Bold.ttf -misc-literation mono powerline-bold-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation Mono Powerline Italic.ttf -misc-literation mono powerline-medium-i-normal--0-0-0-0-p-0-suneu-greek
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-adobe-standard
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-8
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Literation Mono Powerline.ttf -misc-literation mono powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
13
fonts/powerline/Meslo/LICENSE.txt
Normal file
13
fonts/powerline/Meslo/LICENSE.txt
Normal file
@ -0,0 +1,13 @@
|
||||
Copyright 2009, 2010, 2013 André Berg
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
BIN
fonts/powerline/Meslo/Meslo LG L DZ Regular for Powerline.otf
Normal file
BIN
fonts/powerline/Meslo/Meslo LG L DZ Regular for Powerline.otf
Normal file
Binary file not shown.
BIN
fonts/powerline/Meslo/Meslo LG L Regular for Powerline.otf
Normal file
BIN
fonts/powerline/Meslo/Meslo LG L Regular for Powerline.otf
Normal file
Binary file not shown.
BIN
fonts/powerline/Meslo/Meslo LG M DZ Regular for Powerline.otf
Normal file
BIN
fonts/powerline/Meslo/Meslo LG M DZ Regular for Powerline.otf
Normal file
Binary file not shown.
BIN
fonts/powerline/Meslo/Meslo LG M Regular for Powerline.otf
Normal file
BIN
fonts/powerline/Meslo/Meslo LG M Regular for Powerline.otf
Normal file
Binary file not shown.
BIN
fonts/powerline/Meslo/Meslo LG S DZ Regular for Powerline.otf
Normal file
BIN
fonts/powerline/Meslo/Meslo LG S DZ Regular for Powerline.otf
Normal file
Binary file not shown.
BIN
fonts/powerline/Meslo/Meslo LG S Regular for Powerline.otf
Normal file
BIN
fonts/powerline/Meslo/Meslo LG S Regular for Powerline.otf
Normal file
Binary file not shown.
6
fonts/powerline/Meslo/README.rst
Normal file
6
fonts/powerline/Meslo/README.rst
Normal file
@ -0,0 +1,6 @@
|
||||
Meslo for Powerline
|
||||
===================
|
||||
|
||||
:Font creator: André Berg
|
||||
:Source: Provided by system
|
||||
:Patched by: `PaBLoX-CL <https://github.com/PaBLoX-CL>`_
|
139
fonts/powerline/Meslo/fonts.dir
Normal file
139
fonts/powerline/Meslo/fonts.dir
Normal file
@ -0,0 +1,139 @@
|
||||
138
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo lg l dz regular for powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo lg l regular for powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo lg m dz regular for powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo lg m regular for powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo lg s dz regular for powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo lg s regular for powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
139
fonts/powerline/Meslo/fonts.scale
Normal file
139
fonts/powerline/Meslo/fonts.scale
Normal file
@ -0,0 +1,139 @@
|
||||
138
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo LG L DZ Regular for Powerline.otf -bitstream-meslo lg l dz for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo LG L Regular for Powerline.otf -bitstream-meslo lg l for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo LG M DZ Regular for Powerline.otf -bitstream-meslo lg m dz for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo LG M Regular for Powerline.otf -bitstream-meslo lg m for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo LG S DZ Regular for Powerline.otf -bitstream-meslo lg s dz for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ascii-0
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp437
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp850
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp852
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-ibm-cp866
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-1
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-10
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-13
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-15
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-16
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-2
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-3
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-4
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-5
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-iso8859-9
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-e
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-r
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-ru
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-u
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-koi8-uni
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-microsoft-cp1252
|
||||
Meslo LG S Regular for Powerline.otf -bitstream-meslo lg s for powerline-medium-r-normal--0-0-0-0-p-0-suneu-greek
|
20
fonts/powerline/Monofur/LICENSE.txt
Normal file
20
fonts/powerline/Monofur/LICENSE.txt
Normal file
@ -0,0 +1,20 @@
|
||||
------------------------------------------------------------------------
|
||||
The monofur typeface by tobias b koehler (unci@tigerden.com)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
This is a monospaced geometric rounded sans serif font based on the
|
||||
eurofurence typeface family.
|
||||
|
||||
The character set includes Roman, Greek and Cyrillic characters as well
|
||||
as box drawing characters. File format is TrueType for PC (under
|
||||
Windows, Linux etc).
|
||||
|
||||
These fonts are freeware and can be distributed as long as they are
|
||||
together with this text file. I would appreciate it though if you could
|
||||
contact me at unci@tigerden.com if you put them on a server. Free
|
||||
samples from commercial users are always very welcome. :)
|
||||
|
||||
For more information, please see the uncifonts WWW page at:
|
||||
http://mercurio.iet.unipi.it/users/tobias/uncifonts.html
|
||||
|
||||
Have fun! tobias b koehler, 2000-04-02
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user