├── .termux ├── colors.properties ├── colors.sh ├── colors │ ├── aco.colors │ ├── azu.colors │ ├── bim.colors │ ├── cai.colors │ ├── chalk.colors │ ├── default.colors │ ├── dracula.colors │ ├── elementary.colors │ ├── elic.colors │ ├── elio.colors │ ├── flat.colors │ ├── freya.colors │ ├── gruvbox.dark.colors │ ├── hemisu.dark.colors │ ├── hybrid.colors │ ├── jup.colors │ ├── material.colors │ ├── miu.colors │ ├── monokai.dark.colors │ ├── nep.colors │ ├── ocean.dark.colors │ ├── one.dark.colors │ ├── one.light.colors │ ├── pali.colors │ ├── peppermint.colors │ ├── sat.colors │ ├── shel.colors │ ├── smyck.colors │ ├── solarized.dark.colors │ ├── tango.colors │ ├── tin.colors │ ├── tomorrow.colors │ ├── tomorrow.night.blue.colors │ ├── tomorrow.night.colors │ ├── tomorrow.night.eighties.colors │ ├── ura.colors │ └── vag.colors ├── font.ttf ├── fonts.sh └── fonts │ ├── AnonymousPro │ ├── Anonymice Powerline.ttf │ ├── LICENSE.txt │ └── README.rst │ ├── Arimo │ ├── Arimo for Powerline.ttf │ ├── LICENSE.txt │ └── README.rst │ ├── Cousine │ ├── Cousine for Powerline.ttf │ ├── LICENSE.txt │ └── README.rst │ ├── DejaVuSansMono │ ├── DejaVu Sans Mono for Powerline.ttf │ ├── LICENSE.txt │ └── README.rst │ ├── DroidSansMono │ ├── Droid Sans Mono for Powerline.otf │ ├── LICENSE.txt │ └── README.rst │ ├── DroidSansMonoDotted │ ├── Droid Sans Mono Dotted for Powerline.ttf │ ├── LICENSE.txt │ └── README.rst │ ├── DroidSansMonoSlashed │ ├── Droid Sans Mono Slashed for Powerline.ttf │ ├── LICENSE.txt │ └── README.rst │ ├── FiraMono │ ├── FuraMono-Regular Powerline.otf │ ├── LICENSE.txt │ └── README.rst │ ├── Hack │ ├── Hack-Regular.ttf │ ├── LICENSE.txt │ └── README.rst │ ├── Inconsolata-g │ ├── Inconsolata-g for Powerline.otf │ ├── LICENSE.txt │ └── README.rst │ ├── Inconsolata │ ├── Inconsolata for Powerline.otf │ ├── LICENSE.txt │ └── README.rst │ ├── InconsolataDz │ ├── Inconsolata-dz for Powerline.otf │ ├── LICENSE.txt │ └── README.rst │ ├── InputMono │ └── README.rst │ ├── LiberationMono │ ├── LICENSE.txt │ ├── Literation Mono Powerline.ttf │ └── README.rst │ ├── Meslo │ ├── LICENSE.txt │ ├── Meslo LG M Regular for Powerline.otf │ └── README.rst │ ├── Monofur │ ├── LICENSE.txt │ └── Monofur for Powerline.ttf │ ├── RobotoMono │ ├── LICENSE.txt │ ├── README.rst │ └── Roboto Mono for Powerline.ttf │ ├── SourceCodePro │ ├── LICENSE.txt │ ├── README.rst │ └── Sauce Code Powerline Regular.otf │ ├── SymbolNeu │ ├── LICENSE.txt │ ├── README.rst │ └── Symbol Neu for Powerline.ttf │ ├── Tinos │ ├── LICENSE.txt │ ├── README.rst │ └── Tinos for Powerline.ttf │ └── UbuntuMono │ ├── LICENCE.txt │ ├── README.rst │ └── Ubuntu Mono derivative Powerline.ttf ├── README.md └── install.sh /.termux/colors.properties: -------------------------------------------------------------------------------- 1 | # tango.colors 2 | # Color theme from https://blogs.n1zyy.com/andrew/2009/02/02/tango-color-scheme-for-xfce-terminal/ 3 | foreground=#ffffff 4 | background=#323232323232 5 | cursor=#93a1a1 6 | color0=#2e2e34343636 7 | color1=#cccc00000000 8 | color2=#4e4e9a9a0606 9 | color3=#c4c4a0a00000 10 | color4=#34346565a4a4 11 | color5=#757550507b7b 12 | color6=#060698989a9a 13 | color7=#d3d3d7d7cfcf 14 | color8=#555557575353 15 | color9=#efef29292929 16 | color10=#8a8ae2e23434 17 | color11=#fcfce9e94f4f 18 | color12=#72729f9fcfcf 19 | color13=#adad7f7fa8a8 20 | color14=#3434e2e2e2e2 21 | color15=#eeeeeeeeecec 22 | -------------------------------------------------------------------------------- /.termux/colors.sh: -------------------------------------------------------------------------------- 1 | #!/data/data/com.termux/files/usr/bin/bash 2 | DIR=`cd $(dirname $0); pwd` 3 | COLORS_DIR=$DIR/colors 4 | count=0 5 | 6 | echo -e "The default color theme is Tango.\nYou can choose another one from the list below"; 7 | 8 | for colors in "$COLORS_DIR"/*; do 9 | colors_name[count]=$( echo $colors | awk -F'/' '{print $NF}' ) 10 | echo -e "($count) ${colors_name[count]}"; 11 | count=$(( $count + 1 )); 12 | done; 13 | count=$(( $count - 1 )); 14 | 15 | while true; do 16 | read -p 'Enter a number, leave blank to not to change:' number; 17 | if [[ -z "$number" ]]; then 18 | break; 19 | elif ! [[ $number =~ ^[0-9]+$ ]]; then 20 | echo "Please enter the right number!"; 21 | elif (( $number>=0 && $number<=$count )); then 22 | eval choice=${colors_name[number]}; 23 | cp -fr "$COLORS_DIR/$choice" "$DIR/colors.properties"; 24 | break; 25 | else 26 | echo "Please enter the right number!"; 27 | fi 28 | done 29 | 30 | termux-reload-settings 31 | -------------------------------------------------------------------------------- /.termux/colors/aco.colors: -------------------------------------------------------------------------------- 1 | # aco.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#3f3f3f 4 | color1=#ff0883 5 | color2=#83ff08 6 | color3=#ff8308 7 | color4=#0883ff 8 | color5=#8308ff 9 | color6=#08ff83 10 | color7=#bebebe 11 | color8=#474747 12 | color9=#ff1e8e 13 | color10=#8eff1e 14 | color11=#ff8e1e 15 | color12=#1e8eff 16 | color13=#8e1eff 17 | color14=#1eff8e 18 | color15=#c4c4c4 19 | background=#1f1305 20 | foreground=#b4e1fd 21 | cursor=#b4e1fd 22 | -------------------------------------------------------------------------------- /.termux/colors/azu.colors: -------------------------------------------------------------------------------- 1 | # azu.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#ac6d74 5 | color2=#74ac6d 6 | color3=#aca46d 7 | color4=#6d74ac 8 | color5=#a46dac 9 | color6=#6daca4 10 | color7=#e6e6e6 11 | color8=#262626 12 | color9=#d6b8bc 13 | color10=#bcd6b8 14 | color11=#d6d3b8 15 | color12=#b8bcd6 16 | color13=#d3b8d6 17 | color14=#b8d6d3 18 | color15=#ffffff 19 | background=#09111a 20 | foreground=#d9e6f2 21 | cursor=#d9e6f2 22 | -------------------------------------------------------------------------------- /.termux/colors/bim.colors: -------------------------------------------------------------------------------- 1 | # bim.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#2c2423 4 | color1=#f557a0 5 | color2=#a9ee55 6 | color3=#f5a255 7 | color4=#5ea2ec 8 | color5=#a957ec 9 | color6=#5eeea0 10 | color7=#918988 11 | color8=#918988 12 | color9=#f579b2 13 | color10=#bbee78 14 | color11=#f5b378 15 | color12=#81b3ec 16 | color13=#bb79ec 17 | color14=#81eeb2 18 | color15=#f5eeec 19 | background=#012849 20 | foreground=#a9bed8 21 | cursor=#a9bed8 22 | -------------------------------------------------------------------------------- /.termux/colors/cai.colors: -------------------------------------------------------------------------------- 1 | # cai.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#ca274d 5 | color2=#4dca27 6 | color3=#caa427 7 | color4=#274dca 8 | color5=#a427ca 9 | color6=#27caa4 10 | color7=#808080 11 | color8=#808080 12 | color9=#e98da3 13 | color10=#a3e98d 14 | color11=#e9d48d 15 | color12=#8da3e9 16 | color13=#d48de9 17 | color14=#8de9d4 18 | color15=#ffffff 19 | background=#09111a 20 | foreground=#d9e6f2 21 | cursor=#d9e6f2 22 | -------------------------------------------------------------------------------- /.termux/colors/chalk.colors: -------------------------------------------------------------------------------- 1 | # chalk.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#646464 4 | color1=#F58E8E 5 | color2=#A9D3AB 6 | color3=#FED37E 7 | color4=#7AABD4 8 | color5=#D6ADD5 9 | color6=#79D4D5 10 | color7=#D4D4D4 11 | color8=#646464 12 | color9=#F58E8E 13 | color10=#A9D3AB 14 | color11=#FED37E 15 | color12=#7AABD4 16 | color13=#D6ADD5 17 | color14=#79D4D5 18 | color15=#D4D4D4 19 | background=#2D2D2D 20 | foreground=#D4D4D4 21 | cursor=#D4D4D4 22 | -------------------------------------------------------------------------------- /.termux/colors/default.colors: -------------------------------------------------------------------------------- 1 | # default.colors 2 | # https://github.com/altercation/solarized/blob/master/xresources/solarized 3 | background=#002b36 4 | foreground=#839496 5 | cursor=#93a1a1 6 | 7 | color0=#073642 8 | color1=#dc322f 9 | color2=#859900 10 | color3=#b58900 11 | color4=#268bd2 12 | color5=#d33682 13 | color6=#2aa198 14 | color7=#eee8d5 15 | color9=#cb4b16 16 | color8=#002b36 17 | color10=#586e75 18 | color11=#657b83 19 | color12=#839496 20 | color13=#6c71c4 21 | color14=#93a1a1 22 | color15=#fdf6e3 23 | -------------------------------------------------------------------------------- /.termux/colors/dracula.colors: -------------------------------------------------------------------------------- 1 | # dracula.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#44475a 4 | color1=#ff5555 5 | color2=#50fa7b 6 | color3=#ffb86c 7 | color4=#8be9fd 8 | color5=#bd93f9 9 | color6=#ff79c6 10 | color7=#94A3A5 11 | color8=#000000 12 | color9=#ff5555 13 | color10=#50fa7b 14 | color11=#ffb86c 15 | color12=#8be9fd 16 | color13=#bd93f9 17 | color14=#ff79c6 18 | color15=#ffffff 19 | background=#282a36 20 | foreground=#94A3A5 21 | cursor=#94A3A5 22 | -------------------------------------------------------------------------------- /.termux/colors/elementary.colors: -------------------------------------------------------------------------------- 1 | # elementary.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#303030 4 | color1=#e1321a 5 | color2=#6ab017 6 | color3=#ffc005 7 | color4=#004f9e 8 | color5=#ec0048 9 | color6=#2aa7e7 10 | color7=#f2f2f2 11 | color8=#5d5d5d 12 | color9=#ff361e 13 | color10=#7bc91f 14 | color11=#ffd00a 15 | color12=#0071ff 16 | color13=#ff1d62 17 | color14=#4bb8fd 18 | color15=#a020f0 19 | background=#101010 20 | foreground=#f2f2f2 21 | cursor=#f2f2f2 22 | -------------------------------------------------------------------------------- /.termux/colors/elic.colors: -------------------------------------------------------------------------------- 1 | # elic.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#303030 4 | color1=#e1321a 5 | color2=#6ab017 6 | color3=#ffc005 7 | color4=#729FCF 8 | color5=#ec0048 9 | color6=#f2f2f2 10 | color7=#2aa7e7 11 | color8=#5d5d5d 12 | color9=#ff361e 13 | color10=#7bc91f 14 | color11=#ffd00a 15 | color12=#0071ff 16 | color13=#ff1d62 17 | color14=#4bb8fd 18 | color15=#a020f0 19 | background=#4A453E 20 | foreground=#f2f2f2 21 | cursor=#f2f2f2 22 | -------------------------------------------------------------------------------- /.termux/colors/elio.colors: -------------------------------------------------------------------------------- 1 | # elio.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#303030 4 | color1=#e1321a 5 | color2=#6ab017 6 | color3=#ffc005 7 | color4=#729FCF 8 | color5=#ec0048 9 | color6=#2aa7e7 10 | color7=#f2f2f2 11 | color8=#5d5d5d 12 | color9=#ff361e 13 | color10=#7bc91f 14 | color11=#ffd00a 15 | color12=#0071ff 16 | color13=#ff1d62 17 | color14=#4bb8fd 18 | color15=#a020f0 19 | background=#041A3B 20 | foreground=#f2f2f2 21 | cursor=#f2f2f2 22 | -------------------------------------------------------------------------------- /.termux/colors/flat.colors: -------------------------------------------------------------------------------- 1 | # flat.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#2c3e50 4 | color1=#c0392b 5 | color2=#27ae60 6 | color3=#f39c12 7 | color4=#2980b9 8 | color5=#8e44ad 9 | color6=#16a085 10 | color7=#bdc3c7 11 | color8=#34495e 12 | color9=#e74c3c 13 | color10=#2ecc71 14 | color11=#f1c40f 15 | color12=#3498db 16 | color13=#9b59b6 17 | color14=#2AA198 18 | color15=#ecf0f1 19 | background=#1F2D3A 20 | foreground=#1abc9c 21 | cursor=#1abc9c 22 | -------------------------------------------------------------------------------- /.termux/colors/freya.colors: -------------------------------------------------------------------------------- 1 | # freya.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#073642 4 | color1=#dc322f 5 | color2=#859900 6 | color3=#b58900 7 | color4=#268bd2 8 | color5=#ec0048 9 | color6=#2aa198 10 | color7=#94a3a5 11 | color8=#586e75 12 | color9=#cb4b16 13 | color10=#859900 14 | color11=#b58900 15 | color12=#268bd2 16 | color13=#d33682 17 | color14=#2aa198 18 | color15=#6c71c4 19 | background=#252e32 20 | foreground=#94a3a5 21 | cursor=#839496 22 | -------------------------------------------------------------------------------- /.termux/colors/gruvbox.dark.colors: -------------------------------------------------------------------------------- 1 | # gruvbox.dark.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#665c54 4 | color1=#fb4934 5 | color2=#83a598 6 | color3=#d79921 7 | color4=#b16286 8 | color5=#458588 9 | color6=#b8bb26 10 | color7=#d65d0e 11 | color8=#a89984 12 | color9=#fb4934 13 | color10=#8ec07c 14 | color11=#fabd2f 15 | color12=#d3869b 16 | color13=#689d6a 17 | color14=#98971a 18 | color15=#fe8019 19 | background=#282828 20 | foreground=#ebdbb2 21 | cursor=#ebdbb2 22 | -------------------------------------------------------------------------------- /.termux/colors/hemisu.dark.colors: -------------------------------------------------------------------------------- 1 | # hemisu.dark.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#444444 4 | color1=#FF0054 5 | color2=#B1D630 6 | color3=#9D895E 7 | color4=#67BEE3 8 | color5=#B576BC 9 | color6=#569A9F 10 | color7=#EDEDED 11 | color8=#777777 12 | color9=#D65E75 13 | color10=#BAFFAA 14 | color11=#ECE1C8 15 | color12=#9FD3E5 16 | color13=#DEB3DF 17 | color14=#B6E0E5 18 | color15=#FFFFFF 19 | background=#000000 20 | foreground=#FFFFFF 21 | cursor=#BAFFAA 22 | -------------------------------------------------------------------------------- /.termux/colors/hybrid.colors: -------------------------------------------------------------------------------- 1 | # hybrid.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#282a2e 4 | color1=#A54242 5 | color2=#8C9440 6 | color3=#de935f 7 | color4=#5F819D 8 | color5=#85678F 9 | color6=#5E8D87 10 | color7=#969896 11 | color8=#373b41 12 | color9=#cc6666 13 | color10=#b5bd68 14 | color11=#f0c674 15 | color12=#81a2be 16 | color13=#b294bb 17 | color14=#8abeb7 18 | color15=#c5c8c6 19 | background=#141414 20 | foreground=#94a3a5 21 | cursor=#94a3a5 22 | -------------------------------------------------------------------------------- /.termux/colors/jup.colors: -------------------------------------------------------------------------------- 1 | # jup.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#dd006f 5 | color2=#6fdd00 6 | color3=#dd6f00 7 | color4=#006fdd 8 | color5=#6f00dd 9 | color6=#00dd6f 10 | color7=#f2f2f2 11 | color8=#7d7d7d 12 | color9=#ff74b9 13 | color10=#b9ff74 14 | color11=#ffb974 15 | color12=#74b9ff 16 | color13=#b974ff 17 | color14=#74ffb9 18 | color15=#ffffff 19 | background=#758480 20 | foreground=#23476a 21 | cursor=#23476a 22 | -------------------------------------------------------------------------------- /.termux/colors/material.colors: -------------------------------------------------------------------------------- 1 | # material.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#073641 4 | color1=#EB606B 5 | color2=#C3E88D 6 | color3=#F7EB95 7 | color4=#80CBC3 8 | color5=#FF2490 9 | color6=#AEDDFF 10 | color7=#FFFFFF 11 | color8=#002B36 12 | color9=#EB606B 13 | color10=#C3E88D 14 | color11=#F7EB95 15 | color12=#7DC6BF 16 | color13=#6C71C3 17 | color14=#34434D 18 | color15=#FFFFFF 19 | background=#1E282C 20 | foreground=#C3C7D1 21 | cursor=#657B83 22 | -------------------------------------------------------------------------------- /.termux/colors/miu.colors: -------------------------------------------------------------------------------- 1 | # miu.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#b87a7a 5 | color2=#7ab87a 6 | color3=#b8b87a 7 | color4=#7a7ab8 8 | color5=#b87ab8 9 | color6=#7ab8b8 10 | color7=#d9d9d9 11 | color8=#262626 12 | color9=#dbbdbd 13 | color10=#bddbbd 14 | color11=#dbdbbd 15 | color12=#bdbddb 16 | color13=#dbbddb 17 | color14=#bddbdb 18 | color15=#ffffff 19 | background=#0d1926 20 | foreground=#d9e6f2 21 | cursor=#d9e6f2 22 | -------------------------------------------------------------------------------- /.termux/colors/monokai.dark.colors: -------------------------------------------------------------------------------- 1 | # monokai.dark.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#75715e 4 | color1=#f92672 5 | color2=#a6e22e 6 | color3=#f4bf75 7 | color4=#66d9ef 8 | color5=#ae81ff 9 | color6=#2AA198 10 | color7=#f9f8f5 11 | color8=#272822 12 | color9=#f92672 13 | color10=#a6e22e 14 | color11=#f4bf75 15 | color12=#66d9ef 16 | color13=#ae81ff 17 | color14=#2AA198 18 | color15=#f8f8f2 19 | background=#272822 20 | foreground=#f8f8f2 21 | cursor=#f8f8f2 22 | -------------------------------------------------------------------------------- /.termux/colors/nep.colors: -------------------------------------------------------------------------------- 1 | # nep.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#dd6f00 5 | color2=#00dd6f 6 | color3=#6fdd00 7 | color4=#6f00dd 8 | color5=#dd006f 9 | color6=#006fdd 10 | color7=#f2f2f2 11 | color8=#7d7d7d 12 | color9=#ffb974 13 | color10=#74ffb9 14 | color11=#b9ff74 15 | color12=#b974ff 16 | color13=#ff74b9 17 | color14=#74b9ff 18 | color15=#ffffff 19 | background=#758480 20 | foreground=#23476a 21 | cursor=#23476a 22 | -------------------------------------------------------------------------------- /.termux/colors/ocean.dark.colors: -------------------------------------------------------------------------------- 1 | # ocean.dark.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#4F4F4F 4 | color1=#AF4B57 5 | color2=#AFD383 6 | color3=#E5C079 7 | color4=#7D90A4 8 | color5=#A4799D 9 | color6=#85A6A5 10 | color7=#EEEDEE 11 | color8=#7B7B7B 12 | color9=#AF4B57 13 | color10=#CEFFAB 14 | color11=#FFFECC 15 | color12=#B5DCFE 16 | color13=#FB9BFE 17 | color14=#DFDFFD 18 | color15=#FEFFFE 19 | background=#1C1F27 20 | foreground=#979CAC 21 | cursor=#979CAC 22 | -------------------------------------------------------------------------------- /.termux/colors/one.dark.colors: -------------------------------------------------------------------------------- 1 | # one.dark.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#E06C75 5 | color2=#98C379 6 | color3=#D19A66 7 | color4=#61AFEF 8 | color5=#C678DD 9 | color6=#56B6C2 10 | color7=#ABB2BF 11 | color8=#5C6370 12 | color9=#E06C75 13 | color10=#98C379 14 | color11=#D19A66 15 | color12=#61AFEF 16 | color13=#C678DD 17 | color14=#56B6C2 18 | color15=#FFFEFE 19 | background=#1E2127 20 | foreground=#5C6370 21 | cursor=#5C6370 22 | -------------------------------------------------------------------------------- /.termux/colors/one.light.colors: -------------------------------------------------------------------------------- 1 | # one.light.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#DA3E39 5 | color2=#41933E 6 | color3=#855504 7 | color4=#315EEE 8 | color5=#930092 9 | color6=#0E6FAD 10 | color7=#8E8F96 11 | color8=#2A2B32 12 | color9=#DA3E39 13 | color10=#41933E 14 | color11=#855504 15 | color12=#315EEE 16 | color13=#930092 17 | color14=#0E6FAD 18 | color15=#FFFEFE 19 | background=#F8F8F8 20 | foreground=#2A2B32 21 | cursor=#2A2B32 22 | -------------------------------------------------------------------------------- /.termux/colors/pali.colors: -------------------------------------------------------------------------------- 1 | # pali.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#0a0a0a 4 | color1=#ab8f74 5 | color2=#74ab8f 6 | color3=#8fab74 7 | color4=#8f74ab 8 | color5=#ab748f 9 | color6=#748fab 10 | color7=#F2F2F2 11 | color8=#5D5D5D 12 | color9=#FF1D62 13 | color10=#9cc3af 14 | color11=#FFD00A 15 | color12=#af9cc3 16 | color13=#FF1D62 17 | color14=#4BB8FD 18 | color15=#A020F0 19 | background=#232E37 20 | foreground=#d9e6f2 21 | cursor=#d9e6f2 22 | -------------------------------------------------------------------------------- /.termux/colors/peppermint.colors: -------------------------------------------------------------------------------- 1 | # peppermint.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#353535 4 | color1=#E64569 5 | color2=#89D287 6 | color3=#DAB752 7 | color4=#439ECF 8 | color5=#D961DC 9 | color6=#64AAAF 10 | color7=#B3B3B3 11 | color8=#535353 12 | color9=#E4859A 13 | color10=#A2CCA1 14 | color11=#E1E387 15 | color12=#6FBBE2 16 | color13=#E586E7 17 | color14=#96DCDA 18 | color15=#DEDEDE 19 | background=#000000 20 | foreground=#C7C7C7 21 | cursor=#BBBBBB 22 | -------------------------------------------------------------------------------- /.termux/colors/sat.colors: -------------------------------------------------------------------------------- 1 | # sat.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#dd0007 5 | color2=#07dd00 6 | color3=#ddd600 7 | color4=#0007dd 8 | color5=#d600dd 9 | color6=#00ddd6 10 | color7=#f2f2f2 11 | color8=#7d7d7d 12 | color9=#ff7478 13 | color10=#78ff74 14 | color11=#fffa74 15 | color12=#7478ff 16 | color13=#fa74ff 17 | color14=#74fffa 18 | color15=#ffffff 19 | background=#758480 20 | foreground=#23476a 21 | cursor=#23476a 22 | -------------------------------------------------------------------------------- /.termux/colors/shel.colors: -------------------------------------------------------------------------------- 1 | # shel.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#2c2423 4 | color1=#ab2463 5 | color2=#6ca323 6 | color3=#ab6423 7 | color4=#2c64a2 8 | color5=#6c24a2 9 | color6=#2ca363 10 | color7=#918988 11 | color8=#918988 12 | color9=#f588b9 13 | color10=#c2ee86 14 | color11=#f5ba86 15 | color12=#8fbaec 16 | color13=#c288ec 17 | color14=#8feeb9 18 | color15=#f5eeec 19 | background=#2a201f 20 | foreground=#4882cd 21 | cursor=#4882cd 22 | -------------------------------------------------------------------------------- /.termux/colors/smyck.colors: -------------------------------------------------------------------------------- 1 | # smyck.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#C75646 5 | color2=#8EB33B 6 | color3=#D0B03C 7 | color4=#72B3CC 8 | color5=#C8A0D1 9 | color6=#218693 10 | color7=#B0B0B0 11 | color8=#5D5D5D 12 | color9=#E09690 13 | color10=#CDEE69 14 | color11=#FFE377 15 | color12=#9CD9F0 16 | color13=#FBB1F9 17 | color14=#77DFD8 18 | color15=#F7F7F7 19 | background=#242424 20 | foreground=#F7F7F7 21 | cursor=#F7F7F7 22 | -------------------------------------------------------------------------------- /.termux/colors/solarized.dark.colors: -------------------------------------------------------------------------------- 1 | # solarized.dark.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#073642 4 | color1=#DC322F 5 | color2=#859900 6 | color3=#B58900 7 | color4=#268BD2 8 | color5=#D33682 9 | color6=#2AA198 10 | color7=#EEE8D5 11 | color8=#002B36 12 | color9=#CB4B16 13 | color10=#586E75 14 | color11=#657B83 15 | color12=#839496 16 | color13=#6C71C4 17 | color14=#93A1A1 18 | color15=#FDF6E3 19 | background=#002B36 20 | foreground=#839496 21 | cursor=#F7F7F7 22 | -------------------------------------------------------------------------------- /.termux/colors/tango.colors: -------------------------------------------------------------------------------- 1 | # tango.colors 2 | # Color theme from https://blogs.n1zyy.com/andrew/2009/02/02/tango-color-scheme-for-xfce-terminal/ 3 | foreground=#ffffff 4 | background=#323232323232 5 | cursor=#93a1a1 6 | color0=#2e2e34343636 7 | color1=#cccc00000000 8 | color2=#4e4e9a9a0606 9 | color3=#c4c4a0a00000 10 | color4=#34346565a4a4 11 | color5=#757550507b7b 12 | color6=#060698989a9a 13 | color7=#d3d3d7d7cfcf 14 | color8=#555557575353 15 | color9=#efef29292929 16 | color10=#8a8ae2e23434 17 | color11=#fcfce9e94f4f 18 | color12=#72729f9fcfcf 19 | color13=#adad7f7fa8a8 20 | color14=#3434e2e2e2e2 21 | color15=#eeeeeeeeecec -------------------------------------------------------------------------------- /.termux/colors/tin.colors: -------------------------------------------------------------------------------- 1 | # tin.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#8d534e 5 | color2=#4e8d53 6 | color3=#888d4e 7 | color4=#534e8d 8 | color5=#8d4e88 9 | color6=#4e888d 10 | color7=#ffffff 11 | color8=#000000 12 | color9=#b57d78 13 | color10=#78b57d 14 | color11=#b0b578 15 | color12=#7d78b5 16 | color13=#b578b0 17 | color14=#78b0b5 18 | color15=#ffffff 19 | background=#2e2e35 20 | foreground=#ffffff 21 | cursor=#ffffff 22 | -------------------------------------------------------------------------------- /.termux/colors/tomorrow.colors: -------------------------------------------------------------------------------- 1 | # tomorrow.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#C82828 5 | color2=#718C00 6 | color3=#EAB700 7 | color4=#4171AE 8 | color5=#8959A8 9 | color6=#3E999F 10 | color7=#FFFEFE 11 | color8=#000000 12 | color9=#C82828 13 | color10=#708B00 14 | color11=#E9B600 15 | color12=#4170AE 16 | color13=#8958A7 17 | color14=#3D999F 18 | color15=#FFFEFE 19 | background=#FFFFFF 20 | foreground=#4D4D4C 21 | cursor=#4C4C4C 22 | -------------------------------------------------------------------------------- /.termux/colors/tomorrow.night.blue.colors: -------------------------------------------------------------------------------- 1 | # tomorrow.night.blue.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#FF9DA3 5 | color2=#D1F1A9 6 | color3=#FFEEAD 7 | color4=#BBDAFF 8 | color5=#EBBBFF 9 | color6=#99FFFF 10 | color7=#FFFEFE 11 | color8=#000000 12 | color9=#FF9CA3 13 | color10=#D0F0A8 14 | color11=#FFEDAC 15 | color12=#BADAFF 16 | color13=#EBBAFF 17 | color14=#99FFFF 18 | color15=#FFFEFE 19 | background=#002451 20 | foreground=#FFFEFE 21 | cursor=#FFFEFE 22 | -------------------------------------------------------------------------------- /.termux/colors/tomorrow.night.colors: -------------------------------------------------------------------------------- 1 | # tomorrow.night.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#CC6666 5 | color2=#B5BD68 6 | color3=#F0C674 7 | color4=#81A2BE 8 | color5=#B293BB 9 | color6=#8ABEB7 10 | color7=#FFFEFE 11 | color8=#000000 12 | color9=#CC6666 13 | color10=#B5BD68 14 | color11=#F0C574 15 | color12=#80A1BD 16 | color13=#B294BA 17 | color14=#8ABDB6 18 | color15=#FFFEFE 19 | background=#1D1F21 20 | foreground=#C5C8C6 21 | cursor=#C4C8C5 22 | -------------------------------------------------------------------------------- /.termux/colors/tomorrow.night.eighties.colors: -------------------------------------------------------------------------------- 1 | # tomorrow.night.eighties.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#F27779 5 | color2=#99CC99 6 | color3=#FFCC66 7 | color4=#6699CC 8 | color5=#CC99CC 9 | color6=#66CCCC 10 | color7=#FFFEFE 11 | color8=#000000 12 | color9=#F17779 13 | color10=#99CC99 14 | color11=#FFCC66 15 | color12=#6699CC 16 | color13=#CC99CC 17 | color14=#66CCCC 18 | color15=#FFFEFE 19 | background=#2C2C2C 20 | foreground=#CCCCCC 21 | cursor=#CCCCCC 22 | -------------------------------------------------------------------------------- /.termux/colors/ura.colors: -------------------------------------------------------------------------------- 1 | # ura.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#000000 4 | color1=#c21b6f 5 | color2=#6fc21b 6 | color3=#c26f1b 7 | color4=#1b6fc2 8 | color5=#6f1bc2 9 | color6=#1bc26f 10 | color7=#808080 11 | color8=#808080 12 | color9=#ee84b9 13 | color10=#b9ee84 14 | color11=#eeb984 15 | color12=#84b9ee 16 | color13=#b984ee 17 | color14=#84eeb9 18 | color15=#e5e5e5 19 | background=#feffee 20 | foreground=#23476a 21 | cursor=#23476a 22 | -------------------------------------------------------------------------------- /.termux/colors/vag.colors: -------------------------------------------------------------------------------- 1 | # vag.colors 2 | # Color scheme from https://github.com/Mayccoll/Gogh 3 | color0=#303030 4 | color1=#a87139 5 | color2=#39a871 6 | color3=#71a839 7 | color4=#7139a8 8 | color5=#a83971 9 | color6=#3971a8 10 | color7=#8a8a8a 11 | color8=#494949 12 | color9=#b0763b 13 | color10=#3bb076 14 | color11=#76b03b 15 | color12=#763bb0 16 | color13=#b03b76 17 | color14=#3b76b0 18 | color15=#cfcfcf 19 | background=#191f1d 20 | foreground=#d9e6f2 21 | cursor=#d9e6f2 22 | -------------------------------------------------------------------------------- /.termux/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/font.ttf -------------------------------------------------------------------------------- /.termux/fonts.sh: -------------------------------------------------------------------------------- 1 | #!/data/data/com.termux/files/usr/bin/bash 2 | DIR=`cd $(dirname $0) && pwd` 3 | FONTS_DIR=$DIR/fonts 4 | count=0 5 | 6 | echo -e "The default font is Ubuntu font.\nYou can choose another one from list below."; 7 | 8 | for font in $FONTS_DIR/*/{*.ttf,*.otf}; do 9 | font_file[count]=$font; 10 | echo "[$count] $( echo ${font_file[count]} | awk -F'/' '{print $NF}' )"; 11 | count=$(( $count + 1)); 12 | done; 13 | count=$(( $count - 1 )); 14 | 15 | while true; do 16 | read -p 'Enter a number, leave blank to not to change:' number; 17 | 18 | if [[ -z "$number" ]]; then 19 | break; 20 | elif ! [[ $number =~ ^[0-9]+$ ]]; then 21 | echo "Please enter the right number."; 22 | elif (( $number >= 0 && $number <= $count )); then 23 | cp -fr "${font_file[number]}" "$DIR/font.ttf"; 24 | break; 25 | else 26 | echo "Please enter the right number."; 27 | fi 28 | done; 29 | 30 | termux-reload-settings -------------------------------------------------------------------------------- /.termux/fonts/AnonymousPro/Anonymice Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/AnonymousPro/Anonymice Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/AnonymousPro/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009, Mark Simonson 2 | (http://www.ms-studio.com, mark@marksimonson.com), 3 | with Reserved Font Name Anonymous Pro. 4 | Copyright (c) 2013, Kim Silkebækken and Carl X. Su. 5 | 6 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 7 | This license is copied below, and is also available with a FAQ at: 8 | http://scripts.sil.org/OFL 9 | 10 | 11 | ----------------------------------------------------------- 12 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 13 | ----------------------------------------------------------- 14 | 15 | PREAMBLE 16 | The goals of the Open Font License (OFL) are to stimulate worldwide 17 | development of collaborative font projects, to support the font creation 18 | efforts of academic and linguistic communities, and to provide a free and 19 | open framework in which fonts may be shared and improved in partnership 20 | with others. 21 | 22 | The OFL allows the licensed fonts to be used, studied, modified and 23 | redistributed freely as long as they are not sold by themselves. The 24 | fonts, including any derivative works, can be bundled, embedded, 25 | redistributed and/or sold with any software provided that any reserved 26 | names are not used by derivative works. The fonts and derivatives, 27 | however, cannot be released under any other type of license. The 28 | requirement for fonts to remain under this license does not apply 29 | to any document created using the fonts or their derivatives. 30 | 31 | DEFINITIONS 32 | "Font Software" refers to the set of files released by the Copyright 33 | Holder(s) under this license and clearly marked as such. This may 34 | include source files, build scripts and documentation. 35 | 36 | "Reserved Font Name" refers to any names specified as such after the 37 | copyright statement(s). 38 | 39 | "Original Version" refers to the collection of Font Software components as 40 | distributed by the Copyright Holder(s). 41 | 42 | "Modified Version" refers to any derivative made by adding to, deleting, 43 | or substituting -- in part or in whole -- any of the components of the 44 | Original Version, by changing formats or by porting the Font Software to a 45 | new environment. 46 | 47 | "Author" refers to any designer, engineer, programmer, technical 48 | writer or other person who contributed to the Font Software. 49 | 50 | PERMISSION & CONDITIONS 51 | Permission is hereby granted, free of charge, to any person obtaining 52 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 53 | redistribute, and sell modified and unmodified copies of the Font 54 | Software, subject to the following conditions: 55 | 56 | 1) Neither the Font Software nor any of its individual components, 57 | in Original or Modified Versions, may be sold by itself. 58 | 59 | 2) Original or Modified Versions of the Font Software may be bundled, 60 | redistributed and/or sold with any software, provided that each copy 61 | contains the above copyright notice and this license. These can be 62 | included either as stand-alone text files, human-readable headers or 63 | in the appropriate machine-readable metadata fields within text or 64 | binary files as long as those fields can be easily viewed by the user. 65 | 66 | 3) No Modified Version of the Font Software may use the Reserved Font 67 | Name(s) unless explicit written permission is granted by the corresponding 68 | Copyright Holder. This restriction only applies to the primary font name as 69 | presented to the users. 70 | 71 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 72 | Software shall not be used to promote, endorse or advertise any 73 | Modified Version, except to acknowledge the contribution(s) of the 74 | Copyright Holder(s) and the Author(s) or with their explicit written 75 | permission. 76 | 77 | 5) The Font Software, modified or unmodified, in part or in whole, 78 | must be distributed entirely under this license, and must not be 79 | distributed under any other license. The requirement for fonts to 80 | remain under this license does not apply to any document created 81 | using the Font Software. 82 | 83 | TERMINATION 84 | This license becomes null and void if any of the above conditions are 85 | not met. 86 | 87 | DISCLAIMER 88 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 89 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 90 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 91 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 92 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 93 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 94 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 95 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 96 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /.termux/fonts/AnonymousPro/README.rst: -------------------------------------------------------------------------------- 1 | Anonymice Powerline 2 | =================== 3 | 4 | :Font creator: Mark Simonson 5 | :Version: 1.002 6 | :Source: http://www.marksimonson.com/fonts/view/anonymous-pro 7 | :License: SIL OPEN FONT LICENSE Version 1.1 8 | :Patched by: `Carl X. Su `_ 9 | 10 | Anonymous Pro (2009) is a family of four fixed-width fonts designed 11 | especially with coding in mind. Characters that could be mistaken for 12 | one another (O, 0, I, l, 1, etc.) have distinct shapes to make them 13 | easier to tell apart in the context of source code. 14 | 15 | Anonymice Powerline is derived from Anonymous Pro for Powerline users. 16 | The Powerline symbols is being made by Kim Silkebækken. The patch work 17 | is being undertaken by Carl X. Su. 18 | 19 | Both the final font Truetype/OpenType files and the design files used 20 | to produce the font family are distributed under an open licence and 21 | you are expressly encouraged to experiment, modify, share and improve. -------------------------------------------------------------------------------- /.termux/fonts/Arimo/Arimo for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Arimo/Arimo for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/Arimo/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2010 Google Corp. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /.termux/fonts/Arimo/README.rst: -------------------------------------------------------------------------------- 1 | Arimo Powerline 2 | =================== 3 | 4 | :Font creator: Steve Matteson 5 | :Version: 1.30 6 | :Source: https://www.google.com/fonts/specimen/Arimo 7 | :License: Apache License, Version 2.0 8 | :Patched by: `Loic Pefferkorn `_ 9 | 10 | Arimo was designed by Steve Matteson as an innovative, refreshing 11 | sans serif design that is metrically compatible with Arial!". 12 | Arimo offers improved on-screen readability characteristics and the 13 | pan-European WGL character set and solves the needs of developers 14 | looking for width-compatible fonts to address document portability 15 | across platforms. 16 | 17 | Arimo Powerline is derived from Arimo for Powerline users. 18 | The Powerline symbols is being made by Kim Silkebækken. The patch work 19 | is being undertaken by Loic Pefferkorn. 20 | -------------------------------------------------------------------------------- /.termux/fonts/Cousine/Cousine for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Cousine/Cousine for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/Cousine/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2010 Google Corp. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /.termux/fonts/Cousine/README.rst: -------------------------------------------------------------------------------- 1 | Cousine Powerline 2 | ================= 3 | 4 | :Font creator: Steve Matteson 5 | :Version: 1.21 6 | :Source: https://www.google.com/fonts/specimen/Cousine 7 | :License: Apache License, Version 2.0 8 | :Patched by: `Loic Pefferkorn `_ 9 | 10 | Cousine was designed by Steve Matteson as an innovative, 11 | refreshing sans serif design that is metrically compatible 12 | with Courier New™. Cousine offers improved on-screen readability 13 | characteristics and the pan-European WGL character set and solves 14 | the needs of developers looking for width-compatible fonts 15 | to address document portability across platforms. 16 | 17 | Cousine Powerline is derived from Cousine for Powerline users. 18 | The Powerline symbols is being made by Kim Silkebækken. The patch work 19 | is being undertaken by Loic Pefferkorn. 20 | -------------------------------------------------------------------------------- /.termux/fonts/DejaVuSansMono/DejaVu Sans Mono for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/DejaVuSansMono/DejaVu Sans Mono for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/DejaVuSansMono/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Fonts are (c) Bitstream (see below). DejaVu changes are in public domain. 2 | Glyphs imported from Arev fonts are (c) Tavmjong Bah (see below) 3 | 4 | Bitstream Vera Fonts Copyright 5 | ------------------------------ 6 | 7 | Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is 8 | a trademark of Bitstream, Inc. 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of the fonts accompanying this license ("Fonts") and associated 12 | documentation files (the "Font Software"), to reproduce and distribute the 13 | Font Software, including without limitation the rights to use, copy, merge, 14 | publish, distribute, and/or sell copies of the Font Software, and to permit 15 | persons to whom the Font Software is furnished to do so, subject to the 16 | following conditions: 17 | 18 | The above copyright and trademark notices and this permission notice shall 19 | be included in all copies of one or more of the Font Software typefaces. 20 | 21 | The Font Software may be modified, altered, or added to, and in particular 22 | the designs of glyphs or characters in the Fonts may be modified and 23 | additional glyphs or characters may be added to the Fonts, only if the fonts 24 | are renamed to names not containing either the words "Bitstream" or the word 25 | "Vera". 26 | 27 | This License becomes null and void to the extent applicable to Fonts or Font 28 | Software that has been modified and is distributed under the "Bitstream 29 | Vera" names. 30 | 31 | The Font Software may be sold as part of a larger software package but no 32 | copy of one or more of the Font Software typefaces may be sold by itself. 33 | 34 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 35 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, 36 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, 37 | TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME 38 | FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING 39 | ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, 40 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 41 | THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE 42 | FONT SOFTWARE. 43 | 44 | Except as contained in this notice, the names of Gnome, the Gnome 45 | Foundation, and Bitstream Inc., shall not be used in advertising or 46 | otherwise to promote the sale, use or other dealings in this Font Software 47 | without prior written authorization from the Gnome Foundation or Bitstream 48 | Inc., respectively. For further information, contact: fonts at gnome dot 49 | org. 50 | 51 | Arev Fonts Copyright 52 | ------------------------------ 53 | 54 | Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. 55 | 56 | Permission is hereby granted, free of charge, to any person obtaining 57 | a copy of the fonts accompanying this license ("Fonts") and 58 | associated documentation files (the "Font Software"), to reproduce 59 | and distribute the modifications to the Bitstream Vera Font Software, 60 | including without limitation the rights to use, copy, merge, publish, 61 | distribute, and/or sell copies of the Font Software, and to permit 62 | persons to whom the Font Software is furnished to do so, subject to 63 | the following conditions: 64 | 65 | The above copyright and trademark notices and this permission notice 66 | shall be included in all copies of one or more of the Font Software 67 | typefaces. 68 | 69 | The Font Software may be modified, altered, or added to, and in 70 | particular the designs of glyphs or characters in the Fonts may be 71 | modified and additional glyphs or characters may be added to the 72 | Fonts, only if the fonts are renamed to names not containing either 73 | the words "Tavmjong Bah" or the word "Arev". 74 | 75 | This License becomes null and void to the extent applicable to Fonts 76 | or Font Software that has been modified and is distributed under the 77 | "Tavmjong Bah Arev" names. 78 | 79 | The Font Software may be sold as part of a larger software package but 80 | no copy of one or more of the Font Software typefaces may be sold by 81 | itself. 82 | 83 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 84 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 85 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 86 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL 87 | TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 88 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 89 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 90 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 91 | OTHER DEALINGS IN THE FONT SOFTWARE. 92 | 93 | Except as contained in this notice, the name of Tavmjong Bah shall not 94 | be used in advertising or otherwise to promote the sale, use or other 95 | dealings in this Font Software without prior written authorization 96 | from Tavmjong Bah. For further information, contact: tavmjong @ free 97 | . fr. -------------------------------------------------------------------------------- /.termux/fonts/DejaVuSansMono/README.rst: -------------------------------------------------------------------------------- 1 | DejaVu Sans Mono for Powerline 2 | ============================== 3 | 4 | :Font creator: Roy Y.T. Chen 5 | :Source: http://dejavu-fonts.org/wiki/Main_Page 6 | :Patched by: `dbrgn `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMono/Droid Sans Mono for Powerline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/DroidSansMono/Droid Sans Mono for Powerline.otf -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMono/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2006, 2007, 2008, 2009, 2010 Google Corp. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMono/README.rst: -------------------------------------------------------------------------------- 1 | Droid Sans Mono for Powerline 2 | ============================= 3 | 4 | :Font creator: Ascender Corporation 5 | :Source: Provided by system 6 | :Patched by: `mt3 `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMonoDotted/Droid Sans Mono Dotted for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/DroidSansMonoDotted/Droid Sans Mono Dotted for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMonoDotted/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2008 The Android Open Source Project 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | 15 | ########## 16 | 17 | This directory contains the fonts for the platform. They are licensed 18 | under the Apache 2 license. 19 | -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMonoDotted/README.rst: -------------------------------------------------------------------------------- 1 | Droid Sans Mono Dotted for Powerline 2 | ==================================== 3 | 4 | :Font creator: Ascender Corporation (modified by Cosmix) 5 | :Source: http://www.cosmix.org/software/ 6 | :Patched by: `toiffel `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMonoSlashed/Droid Sans Mono Slashed for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/DroidSansMonoSlashed/Droid Sans Mono Slashed for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMonoSlashed/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (C) 2008 The Android Open Source Project 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | 15 | ########## 16 | 17 | This directory contains the fonts for the platform. They are licensed 18 | under the Apache 2 license. 19 | -------------------------------------------------------------------------------- /.termux/fonts/DroidSansMonoSlashed/README.rst: -------------------------------------------------------------------------------- 1 | Droid Sans Mono Slashed for Powerline 2 | ===================================== 3 | 4 | :Font creator: Ascender Corporation (modified by Cosmix) 5 | :Source: http://www.cosmix.org/software/ 6 | :Patched by: `toiffel `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/FiraMono/FuraMono-Regular Powerline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/FiraMono/FuraMono-Regular Powerline.otf -------------------------------------------------------------------------------- /.termux/fonts/FiraMono/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014, Mozilla Foundation https://mozilla.org/ 2 | with Reserved Font Name Fira Sans. 3 | 4 | Copyright (c) 2014, Mozilla Foundation https://mozilla.org/ 5 | with Reserved Font Name Fira Mono. 6 | 7 | Copyright (c) 2014, Telefonica S.A. 8 | 9 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 10 | This license is copied below, and is also available with a FAQ at: 11 | http://scripts.sil.org/OFL 12 | 13 | 14 | ----------------------------------------------------------- 15 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 16 | ----------------------------------------------------------- 17 | 18 | PREAMBLE 19 | The goals of the Open Font License (OFL) are to stimulate worldwide 20 | development of collaborative font projects, to support the font creation 21 | efforts of academic and linguistic communities, and to provide a free and 22 | open framework in which fonts may be shared and improved in partnership 23 | with others. 24 | 25 | The OFL allows the licensed fonts to be used, studied, modified and 26 | redistributed freely as long as they are not sold by themselves. The 27 | fonts, including any derivative works, can be bundled, embedded, 28 | redistributed and/or sold with any software provided that any reserved 29 | names are not used by derivative works. The fonts and derivatives, 30 | however, cannot be released under any other type of license. The 31 | requirement for fonts to remain under this license does not apply 32 | to any document created using the fonts or their derivatives. 33 | 34 | DEFINITIONS 35 | "Font Software" refers to the set of files released by the Copyright 36 | Holder(s) under this license and clearly marked as such. This may 37 | include source files, build scripts and documentation. 38 | 39 | "Reserved Font Name" refers to any names specified as such after the 40 | copyright statement(s). 41 | 42 | "Original Version" refers to the collection of Font Software components as 43 | distributed by the Copyright Holder(s). 44 | 45 | "Modified Version" refers to any derivative made by adding to, deleting, 46 | or substituting -- in part or in whole -- any of the components of the 47 | Original Version, by changing formats or by porting the Font Software to a 48 | new environment. 49 | 50 | "Author" refers to any designer, engineer, programmer, technical 51 | writer or other person who contributed to the Font Software. 52 | 53 | PERMISSION & CONDITIONS 54 | Permission is hereby granted, free of charge, to any person obtaining 55 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 56 | redistribute, and sell modified and unmodified copies of the Font 57 | Software, subject to the following conditions: 58 | 59 | 1) Neither the Font Software nor any of its individual components, 60 | in Original or Modified Versions, may be sold by itself. 61 | 62 | 2) Original or Modified Versions of the Font Software may be bundled, 63 | redistributed and/or sold with any software, provided that each copy 64 | contains the above copyright notice and this license. These can be 65 | included either as stand-alone text files, human-readable headers or 66 | in the appropriate machine-readable metadata fields within text or 67 | binary files as long as those fields can be easily viewed by the user. 68 | 69 | 3) No Modified Version of the Font Software may use the Reserved Font 70 | Name(s) unless explicit written permission is granted by the corresponding 71 | Copyright Holder. This restriction only applies to the primary font name as 72 | presented to the users. 73 | 74 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 75 | Software shall not be used to promote, endorse or advertise any 76 | Modified Version, except to acknowledge the contribution(s) of the 77 | Copyright Holder(s) and the Author(s) or with their explicit written 78 | permission. 79 | 80 | 5) The Font Software, modified or unmodified, in part or in whole, 81 | must be distributed entirely under this license, and must not be 82 | distributed under any other license. The requirement for fonts to 83 | remain under this license does not apply to any document created 84 | using the Font Software. 85 | 86 | TERMINATION 87 | This license becomes null and void if any of the above conditions are 88 | not met. 89 | 90 | DISCLAIMER 91 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 92 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 93 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 94 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 95 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 96 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 97 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 98 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 99 | OTHER DEALINGS IN THE FONT SOFTWARE. 100 | -------------------------------------------------------------------------------- /.termux/fonts/FiraMono/README.rst: -------------------------------------------------------------------------------- 1 | Fura Powerline 2 | ============== 3 | 4 | :Font creator: Erik Spiekermann, Ralph du Carrois (Carrois Type Design, Mozilla Foundation) 5 | :Version: 3.111 6 | :Source: https://github.com/mozilla/Fira 7 | :License: SIL OPEN FONT LICENSE Version 1.1 8 | :Patched by: `Pablo Olmos de Aguilera C. `_ 9 | 10 | Designed to integrate with the character of the Mozilla FirefoxOS, the Fira 11 | typefaces also aim to cover the legibility needs for a large range of handsets 12 | varying in screen quality and rendering. 13 | 14 | Fura Powerline is derived from Fira Sans for Powerline users. The Powerlin Kim 15 | Silkebækken. The patch work is being undertaken by Carl X. Su. symbols is 16 | being made by Pablo Olmos de Aguilera C. 17 | -------------------------------------------------------------------------------- /.termux/fonts/Hack/Hack-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Hack/Hack-Regular.ttf -------------------------------------------------------------------------------- /.termux/fonts/Hack/LICENSE.txt: -------------------------------------------------------------------------------- 1 | LICENSE 2 | 3 | Hack Copyright 2015, Christopher Simpkins with Reserved Font Name Hack. 4 | 5 | Bitstream Vera Sans Mono Copyright 2003 Bitstream Inc. and licensed under the Bitstream Vera License with Reserved Font Names Bitstream and Vera 6 | 7 | DejaVu modifications of the original Bitstream Vera Sans Mono typeface have been committed to the public domain. 8 | 9 | 10 | 11 | This Font Software is licensed under the Hack Open Font License and the Bitstream Vera License. 12 | 13 | These licenses are copied below. 14 | 15 | 16 | HACK OPEN FONT LICENSE 17 | 18 | (Version v.1.0 - 06 September 2015) 19 | 20 | DEFINITIONS 21 | "Font Software" refers to the set of files released by the Copyright 22 | Holder(s) under this license and clearly marked as such. This may 23 | include source files, build scripts and documentation. 24 | 25 | "Reserved Font Name" refers to any names specified as such after the 26 | copyright statement(s). 27 | 28 | "Original Version" refers to the collection of Font Software components as 29 | distributed by the Copyright Holder(s). 30 | 31 | "Modified Version" refers to any derivative made by adding to, deleting, 32 | or substituting -- in part or in whole -- any of the components of the 33 | Original Version, by changing formats or by porting the Font Software to a 34 | new environment. 35 | 36 | "Author" refers to any designer, engineer, programmer, technical 37 | writer or other person who contributed to the Font Software. 38 | 39 | PERMISSION & CONDITIONS 40 | Permission is hereby granted, free of charge, to any person obtaining 41 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 42 | redistribute, and sell modified and unmodified copies of the Font 43 | Software, subject to the following conditions: 44 | 45 | 1) Neither the Font Software nor any of its individual components, 46 | in Original or Modified Versions, may be sold by itself. 47 | 48 | 2) Original or Modified Versions of the Font Software may be bundled, 49 | redistributed and/or sold with any software, provided that each copy 50 | contains the above copyright notice and this license. These can be 51 | included either as stand-alone text files, human-readable headers or 52 | in the appropriate machine-readable metadata fields within text or 53 | binary files as long as those fields can be easily viewed by the user. 54 | 55 | 3) No Modified Version of the Font Software may use the Reserved Font 56 | Name(s) unless explicit written permission is granted by the corresponding 57 | Copyright Holder(s). 58 | 59 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 60 | Software shall not be used to promote, endorse or advertise any 61 | Modified Version, except to acknowledge the contribution(s) of the 62 | Copyright Holder(s) and the Author(s) or with their explicit written 63 | permission. 64 | 65 | 5) The Font Software, modified or unmodified, in part or in whole, 66 | must be distributed under this license. The requirement for fonts to 67 | remain under this license does not apply to any document created 68 | using the Font Software. 69 | 70 | TERMINATION 71 | This license becomes null and void if any of the above conditions are 72 | not met. 73 | 74 | DISCLAIMER 75 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 76 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 77 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 78 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 79 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 80 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 81 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 82 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 83 | OTHER DEALINGS IN THE FONT SOFTWARE. 84 | 85 | 86 | 87 | BITSTREAM VERA LICENSE 88 | 89 | Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. 90 | 91 | 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: 92 | 93 | 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. 94 | 95 | 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". 96 | 97 | 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. 98 | 99 | 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. 100 | 101 | 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. 102 | 103 | 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. 104 | -------------------------------------------------------------------------------- /.termux/fonts/Hack/README.rst: -------------------------------------------------------------------------------- 1 | Hack (for Powerline) 2 | ========================= 3 | 4 | :Font creator: Christopher Simpkins 5 | :Version: 2.013 6 | :Source: https://github.com/chrissimpkins/Hack 7 | :License: Hack Open Font License + Bitstream Vera license 8 | :License URL: https://github.com/chrissimpkins/Hack/blob/master/LICENSE.md 9 | :Patched by: `Christopher Simpkins `_ 10 | 11 | 12 | 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. 13 | 14 | It is not necessary to add 'for Powerline' to the Hack family name when you use this typeface in Powerline. 15 | -------------------------------------------------------------------------------- /.termux/fonts/Inconsolata-g/Inconsolata-g for Powerline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Inconsolata-g/Inconsolata-g for Powerline.otf -------------------------------------------------------------------------------- /.termux/fonts/Inconsolata-g/LICENSE.txt: -------------------------------------------------------------------------------- 1 | This Font Software is Copyright (c) 2006, Raph Levien. 2 | All Rights Reserved. 3 | Copyright (c) 2009, David Zhou (http://nodnod.net/). 4 | Copyright (c) 2009, Leonardo Maffi (http://www.fantascienza.net/leonardo/). 5 | 6 | This Font Software is licensed under the SIL Open Font License, Version 1.0. 7 | No modification of the license is permitted, only verbatim copy is allowed. 8 | This license is copied below, and is also available with a FAQ at: 9 | http://scripts.sil.org/OFL 10 | 11 | 12 | ----------------------------------------------------------- 13 | SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 14 | ----------------------------------------------------------- 15 | 16 | PREAMBLE 17 | The goals of the Open Font License (OFL) are to stimulate worldwide 18 | development of cooperative font projects, to support the font creation 19 | efforts of academic and linguistic communities, and to provide an open 20 | framework in which fonts may be shared and improved in partnership with 21 | others. 22 | 23 | The OFL allows the licensed fonts to be used, studied, modified and 24 | redistributed freely as long as they are not sold by themselves. The 25 | fonts, including any derivative works, can be bundled, embedded, 26 | redistributed and sold with any software provided that the font 27 | names of derivative works are changed. The fonts and derivatives, 28 | however, cannot be released under any other type of license. 29 | 30 | DEFINITIONS 31 | "Font Software" refers to any and all of the following: 32 | - font files 33 | - data files 34 | - source code 35 | - build scripts 36 | - documentation 37 | 38 | "Reserved Font Name" refers to the Font Software name as seen by 39 | users and any other names as specified after the copyright statement. 40 | 41 | "Standard Version" refers to the collection of Font Software 42 | components as distributed by the Copyright Holder. 43 | 44 | "Modified Version" refers to any derivative font software made by 45 | adding to, deleting, or substituting -- in part or in whole -- 46 | any of the components of the Standard Version, by changing formats 47 | or by porting the Font Software to a new environment. 48 | 49 | "Author" refers to any designer, engineer, programmer, technical 50 | writer or other person who contributed to the Font Software. 51 | 52 | PERMISSION & CONDITIONS 53 | Permission is hereby granted, free of charge, to any person obtaining 54 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 55 | redistribute, and sell modified and unmodified copies of the Font 56 | Software, subject to the following conditions: 57 | 58 | 1) Neither the Font Software nor any of its individual components, 59 | in Standard or Modified Versions, may be sold by itself. 60 | 61 | 2) Standard or Modified Versions of the Font Software may be bundled, 62 | redistributed and sold with any software, provided that each copy 63 | contains the above copyright notice and this license. These can be 64 | included either as stand-alone text files, human-readable headers or 65 | in the appropriate machine-readable metadata fields within text or 66 | binary files as long as those fields can be easily viewed by the user. 67 | 68 | 3) No Modified Version of the Font Software may use the Reserved Font 69 | Name(s), in part or in whole, unless explicit written permission is 70 | granted by the Copyright Holder. This restriction applies to all 71 | references stored in the Font Software, such as the font menu name and 72 | other font description fields, which are used to differentiate the 73 | font from others. 74 | 75 | 4) The name(s) of the Copyright Holder or the Author(s) of the Font 76 | Software shall not be used to promote, endorse or advertise any 77 | Modified Version, except to acknowledge the contribution(s) of the 78 | Copyright Holder and the Author(s) or with their explicit written 79 | permission. 80 | 81 | 5) The Font Software, modified or unmodified, in part or in whole, 82 | must be distributed using this license, and may not be distributed 83 | under any other license. 84 | 85 | TERMINATION 86 | This license becomes null and void if any of the above conditions are 87 | not met. 88 | 89 | DISCLAIMER 90 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 91 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 92 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 93 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 94 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 95 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 96 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 97 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 98 | OTHER DEALINGS IN THE FONT SOFTWARE. 99 | -------------------------------------------------------------------------------- /.termux/fonts/Inconsolata-g/README.rst: -------------------------------------------------------------------------------- 1 | Inconsolata for Powerline 2 | ========================= 3 | 4 | :Font creator: Ralph Levien (modified by Leonardo Maffi) 5 | :Source: http://leonardo-m.livejournal.com/77079.html 6 | :Patched by: `PaBLoX_CL `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/Inconsolata/Inconsolata for Powerline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Inconsolata/Inconsolata for Powerline.otf -------------------------------------------------------------------------------- /.termux/fonts/Inconsolata/LICENSE.txt: -------------------------------------------------------------------------------- 1 | This Font Software is Copyright (c) 2006, Raph Levien. 2 | All Rights Reserved. 3 | 4 | This Font Software is licensed under the SIL Open Font License, Version 1.0. 5 | No modification of the license is permitted, only verbatim copy is allowed. 6 | This license is copied below, and is also available with a FAQ at: 7 | http://scripts.sil.org/OFL 8 | 9 | 10 | ----------------------------------------------------------- 11 | SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 12 | ----------------------------------------------------------- 13 | 14 | PREAMBLE 15 | The goals of the Open Font License (OFL) are to stimulate worldwide 16 | development of cooperative font projects, to support the font creation 17 | efforts of academic and linguistic communities, and to provide an open 18 | framework in which fonts may be shared and improved in partnership with 19 | others. 20 | 21 | The OFL allows the licensed fonts to be used, studied, modified and 22 | redistributed freely as long as they are not sold by themselves. The 23 | fonts, including any derivative works, can be bundled, embedded, 24 | redistributed and sold with any software provided that the font 25 | names of derivative works are changed. The fonts and derivatives, 26 | however, cannot be released under any other type of license. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to any and all of the following: 30 | - font files 31 | - data files 32 | - source code 33 | - build scripts 34 | - documentation 35 | 36 | "Reserved Font Name" refers to the Font Software name as seen by 37 | users and any other names as specified after the copyright statement. 38 | 39 | "Standard Version" refers to the collection of Font Software 40 | components as distributed by the Copyright Holder. 41 | 42 | "Modified Version" refers to any derivative font software made by 43 | adding to, deleting, or substituting -- in part or in whole -- 44 | any of the components of the Standard Version, by changing formats 45 | or by porting the Font Software to a new environment. 46 | 47 | "Author" refers to any designer, engineer, programmer, technical 48 | writer or other person who contributed to the Font Software. 49 | 50 | PERMISSION & CONDITIONS 51 | Permission is hereby granted, free of charge, to any person obtaining 52 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 53 | redistribute, and sell modified and unmodified copies of the Font 54 | Software, subject to the following conditions: 55 | 56 | 1) Neither the Font Software nor any of its individual components, 57 | in Standard or Modified Versions, may be sold by itself. 58 | 59 | 2) Standard or Modified Versions of the Font Software may be bundled, 60 | redistributed and sold with any software, provided that each copy 61 | contains the above copyright notice and this license. These can be 62 | included either as stand-alone text files, human-readable headers or 63 | in the appropriate machine-readable metadata fields within text or 64 | binary files as long as those fields can be easily viewed by the user. 65 | 66 | 3) No Modified Version of the Font Software may use the Reserved Font 67 | Name(s), in part or in whole, unless explicit written permission is 68 | granted by the Copyright Holder. This restriction applies to all 69 | references stored in the Font Software, such as the font menu name and 70 | other font description fields, which are used to differentiate the 71 | font from others. 72 | 73 | 4) The name(s) of the Copyright Holder or the Author(s) of the Font 74 | Software shall not be used to promote, endorse or advertise any 75 | Modified Version, except to acknowledge the contribution(s) of the 76 | Copyright Holder and the Author(s) or with their explicit written 77 | permission. 78 | 79 | 5) The Font Software, modified or unmodified, in part or in whole, 80 | must be distributed using this license, and may not be distributed 81 | under any other license. 82 | 83 | TERMINATION 84 | This license becomes null and void if any of the above conditions are 85 | not met. 86 | 87 | DISCLAIMER 88 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 89 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 90 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 91 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 92 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 93 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 94 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 95 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 96 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /.termux/fonts/Inconsolata/README.rst: -------------------------------------------------------------------------------- 1 | Inconsolata for Powerline 2 | ========================= 3 | 4 | :Font creator: Raph Levien 5 | :Source: http://levien.com/type/myfonts/inconsolata.html 6 | :Patched by: `Kha `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/InconsolataDz/Inconsolata-dz for Powerline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/InconsolataDz/Inconsolata-dz for Powerline.otf -------------------------------------------------------------------------------- /.termux/fonts/InconsolataDz/LICENSE.txt: -------------------------------------------------------------------------------- 1 | This Font Software is Copyright (c) 2006, Raph Levien. 2 | All Rights Reserved. 3 | Copyright (c) 2009, David Zhou (http://nodnod.net/). 4 | 5 | This Font Software is licensed under the SIL Open Font License, Version 1.0. 6 | No modification of the license is permitted, only verbatim copy is allowed. 7 | This license is copied below, and is also available with a FAQ at: 8 | http://scripts.sil.org/OFL 9 | 10 | 11 | ----------------------------------------------------------- 12 | SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 13 | ----------------------------------------------------------- 14 | 15 | PREAMBLE 16 | The goals of the Open Font License (OFL) are to stimulate worldwide 17 | development of cooperative font projects, to support the font creation 18 | efforts of academic and linguistic communities, and to provide an open 19 | framework in which fonts may be shared and improved in partnership with 20 | others. 21 | 22 | The OFL allows the licensed fonts to be used, studied, modified and 23 | redistributed freely as long as they are not sold by themselves. The 24 | fonts, including any derivative works, can be bundled, embedded, 25 | redistributed and sold with any software provided that the font 26 | names of derivative works are changed. The fonts and derivatives, 27 | however, cannot be released under any other type of license. 28 | 29 | DEFINITIONS 30 | "Font Software" refers to any and all of the following: 31 | - font files 32 | - data files 33 | - source code 34 | - build scripts 35 | - documentation 36 | 37 | "Reserved Font Name" refers to the Font Software name as seen by 38 | users and any other names as specified after the copyright statement. 39 | 40 | "Standard Version" refers to the collection of Font Software 41 | components as distributed by the Copyright Holder. 42 | 43 | "Modified Version" refers to any derivative font software made by 44 | adding to, deleting, or substituting -- in part or in whole -- 45 | any of the components of the Standard Version, by changing formats 46 | or by porting the Font Software to a new environment. 47 | 48 | "Author" refers to any designer, engineer, programmer, technical 49 | writer or other person who contributed to the Font Software. 50 | 51 | PERMISSION & CONDITIONS 52 | Permission is hereby granted, free of charge, to any person obtaining 53 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 54 | redistribute, and sell modified and unmodified copies of the Font 55 | Software, subject to the following conditions: 56 | 57 | 1) Neither the Font Software nor any of its individual components, 58 | in Standard or Modified Versions, may be sold by itself. 59 | 60 | 2) Standard or Modified Versions of the Font Software may be bundled, 61 | redistributed and sold with any software, provided that each copy 62 | contains the above copyright notice and this license. These can be 63 | included either as stand-alone text files, human-readable headers or 64 | in the appropriate machine-readable metadata fields within text or 65 | binary files as long as those fields can be easily viewed by the user. 66 | 67 | 3) No Modified Version of the Font Software may use the Reserved Font 68 | Name(s), in part or in whole, unless explicit written permission is 69 | granted by the Copyright Holder. This restriction applies to all 70 | references stored in the Font Software, such as the font menu name and 71 | other font description fields, which are used to differentiate the 72 | font from others. 73 | 74 | 4) The name(s) of the Copyright Holder or the Author(s) of the Font 75 | Software shall not be used to promote, endorse or advertise any 76 | Modified Version, except to acknowledge the contribution(s) of the 77 | Copyright Holder and the Author(s) or with their explicit written 78 | permission. 79 | 80 | 5) The Font Software, modified or unmodified, in part or in whole, 81 | must be distributed using this license, and may not be distributed 82 | under any other license. 83 | 84 | TERMINATION 85 | This license becomes null and void if any of the above conditions are 86 | not met. 87 | 88 | DISCLAIMER 89 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 90 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 91 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 92 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 93 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 94 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 95 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 96 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 97 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /.termux/fonts/InconsolataDz/README.rst: -------------------------------------------------------------------------------- 1 | Inconsolata-dz for Powerline 2 | ============================ 3 | 4 | :Font creator: Raph Levien 5 | :Source: http://nodnod.net/2009/feb/12/adding-straight-single-and-double-quotes-inconsola/ 6 | :Patched by: `Faun `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/InputMono/README.rst: -------------------------------------------------------------------------------- 1 | Input Mono 2 | ========== 3 | 4 | Input Mono is officially supported by the font creator, with custom drawn glyphs 5 | for Powerline. Download the font from http://input.fontbureau.com/! 6 | -------------------------------------------------------------------------------- /.termux/fonts/LiberationMono/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Digitized data copyright (c) 2010 Google Corporation 2 | with Reserved Font Arimo, Tinos and Cousine. 3 | Copyright (c) 2012 Red Hat, Inc. 4 | with Reserved Font Name Liberation. 5 | Copyright (c) 2013, Kim Silkebækken and Carl X. Su. 6 | 7 | This Font Software is licensed under the SIL Open Font License, 8 | Version 1.1. 9 | 10 | This license is copied below, and is also available with a FAQ at: 11 | http://scripts.sil.org/OFL 12 | 13 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 14 | 15 | PREAMBLE The goals of the Open Font License (OFL) are to stimulate 16 | worldwide development of collaborative font projects, to support the font 17 | creation efforts of academic and linguistic communities, and to provide 18 | a free and open framework in which fonts may be shared and improved in 19 | partnership with others. 20 | 21 | The OFL allows the licensed fonts to be used, studied, modified and 22 | redistributed freely as long as they are not sold by themselves. 23 | The fonts, including any derivative works, can be bundled, embedded, 24 | redistributed and/or sold with any software provided that any reserved 25 | names are not used by derivative works. The fonts and derivatives, 26 | however, cannot be released under any other type of license. The 27 | requirement for fonts to remain under this license does not apply to 28 | any document created using the fonts or their derivatives. 29 | 30 | 31 | 32 | DEFINITIONS 33 | "Font Software" refers to the set of files released by the Copyright 34 | Holder(s) under this license and clearly marked as such. 35 | This may include source files, build scripts and documentation. 36 | 37 | "Reserved Font Name" refers to any names specified as such after the 38 | copyright statement(s). 39 | 40 | "Original Version" refers to the collection of Font Software components 41 | as distributed by the Copyright Holder(s). 42 | 43 | "Modified Version" refers to any derivative made by adding to, deleting, 44 | or substituting ? in part or in whole ? 45 | any of the components of the Original Version, by changing formats or 46 | by porting the Font Software to a new environment. 47 | 48 | "Author" refers to any designer, engineer, programmer, technical writer 49 | or other person who contributed to the Font Software. 50 | 51 | 52 | PERMISSION & CONDITIONS 53 | 54 | Permission is hereby granted, free of charge, to any person obtaining a 55 | copy of the Font Software, to use, study, copy, merge, embed, modify, 56 | redistribute, and sell modified and unmodified copies of the Font 57 | Software, subject to the following conditions: 58 | 59 | 1) Neither the Font Software nor any of its individual components,in 60 | Original or Modified Versions, may be sold by itself. 61 | 62 | 2) Original or Modified Versions of the Font Software may be bundled, 63 | redistributed and/or sold with any software, provided that each copy 64 | contains the above copyright notice and this license. These can be 65 | included either as stand-alone text files, human-readable headers or 66 | in the appropriate machine-readable metadata fields within text or 67 | binary files as long as those fields can be easily viewed by the user. 68 | 69 | 3) No Modified Version of the Font Software may use the Reserved Font 70 | Name(s) unless explicit written permission is granted by the 71 | corresponding Copyright Holder. This restriction only applies to the 72 | primary font name as presented to the users. 73 | 74 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 75 | Software shall not be used to promote, endorse or advertise any 76 | Modified Version, except to acknowledge the contribution(s) of the 77 | Copyright Holder(s) and the Author(s) or with their explicit written 78 | permission. 79 | 80 | 5) The Font Software, modified or unmodified, in part or in whole, must 81 | be distributed entirely under this license, and must not be distributed 82 | under any other license. The requirement for fonts to remain under 83 | this license does not apply to any document created using the Font 84 | Software. 85 | 86 | 87 | 88 | TERMINATION 89 | This license becomes null and void if any of the above conditions are not met. 90 | 91 | 92 | 93 | DISCLAIMER 94 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 95 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 96 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 97 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 98 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 99 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 100 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 101 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER 102 | DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /.termux/fonts/LiberationMono/Literation Mono Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/LiberationMono/Literation Mono Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/LiberationMono/README.rst: -------------------------------------------------------------------------------- 1 | Literation Mono Powerline 2 | ========================= 3 | 4 | :Font creator: Steve Mattesen 5 | :Version: 2.00.1 6 | :Source: https://fedorahosted.org/liberation-fonts/ 7 | :License: SIL OPEN FONT LICENSE Version 1.1 8 | :Patched by: `Carl X. Su `_ 9 | 10 | The Liberation Fonts is font collection which aims to provide document 11 | layout compatibility as usage of Times New Roman, Arial, Courier New. 12 | 13 | Literation Mono Powerline is derived from The Liberation Fonts for 14 | Powerline users. The Powerline symbols is being made by Kim 15 | Silkebækken. The patch work is being undertaken by Carl X. Su. 16 | 17 | Both the final font Truetype/OpenType files and the design files used 18 | to produce the font family are distributed under an open licence and 19 | you are expressly encouraged to experiment, modify, share and improve. -------------------------------------------------------------------------------- /.termux/fonts/Meslo/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2009, 2010, 2013 André Berg 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /.termux/fonts/Meslo/Meslo LG M Regular for Powerline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Meslo/Meslo LG M Regular for Powerline.otf -------------------------------------------------------------------------------- /.termux/fonts/Meslo/README.rst: -------------------------------------------------------------------------------- 1 | Meslo for Powerline 2 | =================== 3 | 4 | :Font creator: André Berg 5 | :Source: Provided by system 6 | :Patched by: `PaBLoX-CL `_ 7 | -------------------------------------------------------------------------------- /.termux/fonts/Monofur/LICENSE.txt: -------------------------------------------------------------------------------- 1 | ------------------------------------------------------------------------ 2 | The monofur typeface by tobias b koehler (unci@tigerden.com) 3 | ------------------------------------------------------------------------ 4 | 5 | This is a monospaced geometric rounded sans serif font based on the 6 | eurofurence typeface family. 7 | 8 | The character set includes Roman, Greek and Cyrillic characters as well 9 | as box drawing characters. File format is TrueType for PC (under 10 | Windows, Linux etc). 11 | 12 | These fonts are freeware and can be distributed as long as they are 13 | together with this text file. I would appreciate it though if you could 14 | contact me at unci@tigerden.com if you put them on a server. Free 15 | samples from commercial users are always very welcome. :) 16 | 17 | For more information, please see the uncifonts WWW page at: 18 | http://mercurio.iet.unipi.it/users/tobias/uncifonts.html 19 | 20 | Have fun! tobias b koehler, 2000-04-02 -------------------------------------------------------------------------------- /.termux/fonts/Monofur/Monofur for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Monofur/Monofur for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/RobotoMono/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /.termux/fonts/RobotoMono/README.rst: -------------------------------------------------------------------------------- 1 | Roboto Mono is a monospaced addition to the 2 | `Roboto `__ type family. 3 | Like the other members of the Roboto family, the fonts are optimized for 4 | readability on screens across a wide variety of devices and reading 5 | environments. While the monospaced version is related to its variable 6 | width cousin, it doesn’t hesitate to change forms to better fit the 7 | constraints of a monospaced environment. For example, narrow glyphs like 8 | ‘I’, ‘l’ and ‘i’ have added serifs for more even texture while wider 9 | glyphs are adjusted for weight. Curved caps like ‘C’ and ‘O’ take on the 10 | straighter sides from Roboto Condensed. 11 | 12 | Special consideration is given to glyphs important for reading and 13 | writing software source code. Letters with similar shapes are easy to 14 | tell apart. Digit ‘1’, lowercase ‘l’ and capital ‘I’ are easily 15 | differentiated as are zero and the letter ‘O’. Punctuation important for 16 | code has also been considered. For example, the curly braces ‘{ }’ have 17 | exaggerated points to clearly differentiate them from parenthesis ‘( )’ 18 | and braces ‘[ ]’. Periods and commas are also exaggerated to identify 19 | them more quickly. The scale and weight of symbols commonly used as 20 | operators have also been optimized. 21 | 22 | :Font creator: Google 23 | :Source: https://github.com/google/fonts/tree/master/apache/robotomono 24 | :Patched by: `Evan McClain `_ 25 | -------------------------------------------------------------------------------- /.termux/fonts/RobotoMono/Roboto Mono for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/RobotoMono/Roboto Mono for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/SourceCodePro/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), 2 | with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark 3 | of Adobe Systems Incorporated in the United States and/or other countries. 4 | Copyright (c) 2013, Kim Silkebækken and Carl X. Su. 5 | 6 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 7 | This license is copied below, and is also available with a FAQ at: 8 | http://scripts.sil.org/OFL 9 | 10 | 11 | ----------------------------------------------------------- 12 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 13 | ----------------------------------------------------------- 14 | 15 | PREAMBLE 16 | The goals of the Open Font License (OFL) are to stimulate worldwide 17 | development of collaborative font projects, to support the font creation 18 | efforts of academic and linguistic communities, and to provide a free and 19 | open framework in which fonts may be shared and improved in partnership 20 | with others. 21 | 22 | The OFL allows the licensed fonts to be used, studied, modified and 23 | redistributed freely as long as they are not sold by themselves. The 24 | fonts, including any derivative works, can be bundled, embedded, 25 | redistributed and/or sold with any software provided that any reserved 26 | names are not used by derivative works. The fonts and derivatives, 27 | however, cannot be released under any other type of license. The 28 | requirement for fonts to remain under this license does not apply 29 | to any document created using the fonts or their derivatives. 30 | 31 | DEFINITIONS 32 | "Font Software" refers to the set of files released by the Copyright 33 | Holder(s) under this license and clearly marked as such. This may 34 | include source files, build scripts and documentation. 35 | 36 | "Reserved Font Name" refers to any names specified as such after the 37 | copyright statement(s). 38 | 39 | "Original Version" refers to the collection of Font Software components as 40 | distributed by the Copyright Holder(s). 41 | 42 | "Modified Version" refers to any derivative made by adding to, deleting, 43 | or substituting -- in part or in whole -- any of the components of the 44 | Original Version, by changing formats or by porting the Font Software to a 45 | new environment. 46 | 47 | "Author" refers to any designer, engineer, programmer, technical 48 | writer or other person who contributed to the Font Software. 49 | 50 | PERMISSION & CONDITIONS 51 | Permission is hereby granted, free of charge, to any person obtaining 52 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 53 | redistribute, and sell modified and unmodified copies of the Font 54 | Software, subject to the following conditions: 55 | 56 | 1) Neither the Font Software nor any of its individual components, 57 | in Original or Modified Versions, may be sold by itself. 58 | 59 | 2) Original or Modified Versions of the Font Software may be bundled, 60 | redistributed and/or sold with any software, provided that each copy 61 | contains the above copyright notice and this license. These can be 62 | included either as stand-alone text files, human-readable headers or 63 | in the appropriate machine-readable metadata fields within text or 64 | binary files as long as those fields can be easily viewed by the user. 65 | 66 | 3) No Modified Version of the Font Software may use the Reserved Font 67 | Name(s) unless explicit written permission is granted by the corresponding 68 | Copyright Holder. This restriction only applies to the primary font name as 69 | presented to the users. 70 | 71 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 72 | Software shall not be used to promote, endorse or advertise any 73 | Modified Version, except to acknowledge the contribution(s) of the 74 | Copyright Holder(s) and the Author(s) or with their explicit written 75 | permission. 76 | 77 | 5) The Font Software, modified or unmodified, in part or in whole, 78 | must be distributed entirely under this license, and must not be 79 | distributed under any other license. The requirement for fonts to 80 | remain under this license does not apply to any document created 81 | using the Font Software. 82 | 83 | TERMINATION 84 | This license becomes null and void if any of the above conditions are 85 | not met. 86 | 87 | DISCLAIMER 88 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 89 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 90 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 91 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 92 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 93 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 94 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 95 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 96 | OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /.termux/fonts/SourceCodePro/README.rst: -------------------------------------------------------------------------------- 1 | Sauce Code Powerline 2 | ==================== 3 | 4 | :Font creator: Paul D. Hunt (Adobe) 5 | :Version: 1.017 6 | :Source: http://sourceforge.net/projects/sourcecodepro.adobe 7 | :License: SIL OPEN FONT LICENSE Version 1.1 8 | :Patched by: `Carl X. Su `_ 9 | 10 | Source Code Pro is a set of monospaced OpenType fonts that have been 11 | designed to work well in coding environments. This family of fonts is 12 | a complementary design to the Source Sans family. 13 | 14 | Sauce Code Powerline is derived from Source Code Pro for Powerline 15 | users. The Powerline symbols is being made by Kim Silkebækken. The 16 | patch work is being undertaken by Carl X. Su. 17 | 18 | Both the final font Truetype/OpenType files and the design files used 19 | to produce the font family are distributed under an open licence and 20 | you are expressly encouraged to experiment, modify, share and improve. -------------------------------------------------------------------------------- /.termux/fonts/SourceCodePro/Sauce Code Powerline Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/SourceCodePro/Sauce Code Powerline Regular.otf -------------------------------------------------------------------------------- /.termux/fonts/SymbolNeu/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2010 Google Corp. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /.termux/fonts/SymbolNeu/README.rst: -------------------------------------------------------------------------------- 1 | Symbol Neu Powerline 2 | ==================== 3 | 4 | :Font creator: Steve Matteson 5 | :Version: 1.0 6 | :Source: http://gsdview.appspot.com/chromeos-localmirror/distfiles/ 7 | :License: Apache License, Version 2.0 8 | :Patched by: `Loic Pefferkorn `_ 9 | 10 | Symbol Neu is a metrically compatible font to Symbol. 11 | 12 | Symbol Neu Powerline is derived from Symbol Neu for Powerline users. 13 | The Powerline symbols is being made by Kim Silkebækken. The patch work 14 | is being undertaken by Loic Pefferkorn. 15 | -------------------------------------------------------------------------------- /.termux/fonts/SymbolNeu/Symbol Neu for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/SymbolNeu/Symbol Neu for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/Tinos/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2010 Google Corp. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /.termux/fonts/Tinos/README.rst: -------------------------------------------------------------------------------- 1 | Tinos Powerline 2 | =============== 3 | 4 | :Font creator: Steve Matteson 5 | :Version: 1.30 6 | :Source: https://www.google.com/fonts/specimen/Tinos 7 | :License: Apache License, Version 2.0 8 | :Patched by: `Loic Pefferkorn `_ 9 | 10 | Tinos was designed by Steve Matteson as an innovative, refreshing serif 11 | design that is metrically compatible with Times New Roman™. 12 | Tinos offers improved on-screen readability characteristics and the 13 | pan-European WGL character set and solves the needs of developers 14 | looking for width-compatible fonts to address document portability across platforms. 15 | 16 | Tinos Powerline is derived from Tinos for Powerline users. 17 | The Powerline symbols is being made by Kim Silkebækken. The patch work 18 | is being undertaken by Loic Pefferkorn. 19 | -------------------------------------------------------------------------------- /.termux/fonts/Tinos/Tinos for Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/Tinos/Tinos for Powerline.ttf -------------------------------------------------------------------------------- /.termux/fonts/UbuntuMono/LICENCE.txt: -------------------------------------------------------------------------------- 1 | ------------------------------- 2 | UBUNTU FONT LICENCE Version 1.0 3 | ------------------------------- 4 | 5 | PREAMBLE 6 | This licence allows the licensed fonts to be used, studied, modified and 7 | redistributed freely. The fonts, including any derivative works, can be 8 | bundled, embedded, and redistributed provided the terms of this licence 9 | are met. The fonts and derivatives, however, cannot be released under 10 | any other licence. The requirement for fonts to remain under this 11 | licence does not require any document created using the fonts or their 12 | derivatives to be published under this licence, as long as the primary 13 | purpose of the document is not to be a vehicle for the distribution of 14 | the fonts. 15 | 16 | DEFINITIONS 17 | "Font Software" refers to the set of files released by the Copyright 18 | Holder(s) under this licence and clearly marked as such. This may 19 | include source files, build scripts and documentation. 20 | 21 | "Original Version" refers to the collection of Font Software components 22 | as received under this licence. 23 | 24 | "Modified Version" refers to any derivative made by adding to, deleting, 25 | or substituting -- in part or in whole -- any of the components of the 26 | Original Version, by changing formats or by porting the Font Software to 27 | a new environment. 28 | 29 | "Copyright Holder(s)" refers to all individuals and companies who have a 30 | copyright ownership of the Font Software. 31 | 32 | "Substantially Changed" refers to Modified Versions which can be easily 33 | identified as dissimilar to the Font Software by users of the Font 34 | Software comparing the Original Version with the Modified Version. 35 | 36 | To "Propagate" a work means to do anything with it that, without 37 | permission, would make you directly or secondarily liable for 38 | infringement under applicable copyright law, except executing it on a 39 | computer or modifying a private copy. Propagation includes copying, 40 | distribution (with or without modification and with or without charging 41 | a redistribution fee), making available to the public, and in some 42 | countries other activities as well. 43 | 44 | PERMISSION & CONDITIONS 45 | This licence does not grant any rights under trademark law and all such 46 | rights are reserved. 47 | 48 | Permission is hereby granted, free of charge, to any person obtaining a 49 | copy of the Font Software, to propagate the Font Software, subject to 50 | the below conditions: 51 | 52 | 1) Each copy of the Font Software must contain the above copyright 53 | notice and this licence. These can be included either as stand-alone 54 | text files, human-readable headers or in the appropriate machine- 55 | readable metadata fields within text or binary files as long as those 56 | fields can be easily viewed by the user. 57 | 58 | 2) The font name complies with the following: 59 | (a) The Original Version must retain its name, unmodified. 60 | (b) Modified Versions which are Substantially Changed must be renamed to 61 | avoid use of the name of the Original Version or similar names entirely. 62 | (c) Modified Versions which are not Substantially Changed must be 63 | renamed to both (i) retain the name of the Original Version and (ii) add 64 | additional naming elements to distinguish the Modified Version from the 65 | Original Version. The name of such Modified Versions must be the name of 66 | the Original Version, with "derivative X" where X represents the name of 67 | the new work, appended to that name. 68 | 69 | 3) The name(s) of the Copyright Holder(s) and any contributor to the 70 | Font Software shall not be used to promote, endorse or advertise any 71 | Modified Version, except (i) as required by this licence, (ii) to 72 | acknowledge the contribution(s) of the Copyright Holder(s) or (iii) with 73 | their explicit written permission. 74 | 75 | 4) The Font Software, modified or unmodified, in part or in whole, must 76 | be distributed entirely under this licence, and must not be distributed 77 | under any other licence. The requirement for fonts to remain under this 78 | licence does not affect any document created using the Font Software, 79 | except any version of the Font Software extracted from a document 80 | created using the Font Software may only be distributed under this 81 | licence. 82 | 83 | TERMINATION 84 | This licence becomes null and void if any of the above conditions are 85 | not met. 86 | 87 | DISCLAIMER 88 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 89 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 90 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 91 | COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 92 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 93 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 94 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 95 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER 96 | DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /.termux/fonts/UbuntuMono/README.rst: -------------------------------------------------------------------------------- 1 | Ubuntu Mono derivative Powerline 2 | ================================ 3 | 4 | :Font creator: Dalton Maag 5 | :Version: 0.80 6 | :Source: http://font.ubuntu.com/ 7 | :License: UBUNTU FONT LICENCE Version 1.0 8 | :Patched by: `Carl X. Su `_ 9 | 10 | The Ubuntu Font Family are a set of matching new libre/open fonts in 11 | development during 2010--2011. The development is being funded by 12 | Canonical Ltd on behalf the wider Free Software community and the 13 | Ubuntu project. The technical font design work and implementation is 14 | being undertaken by Dalton Maag. 15 | 16 | The Ubuntu Mono derivative Powerline are a set of fonts for Powerline 17 | users. The Powerline symbols is being made by Kim Silkebækken. The 18 | patch work is being undertaken by Carl Su. 19 | 20 | Both the final font Truetype/OpenType files and the design files used 21 | to produce the font family are distributed under an open licence and 22 | you are expressly encouraged to experiment, modify, share and improve. -------------------------------------------------------------------------------- /.termux/fonts/UbuntuMono/Ubuntu Mono derivative Powerline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnoRebel/OhMyTermux/7e95e596a6dcfd081e2e2dba08fd4c48cc7db95c/.termux/fonts/UbuntuMono/Ubuntu Mono derivative Powerline.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Oh My Zsh - Termux (OhMyTermux) 2 | 3 | This is a simple script I altered from many sources(credits below) to my own liking to install [ohmyzsh](https://ohmyz.sh) in Termux for cool features and looks. 4 | 5 | You can make your Termux look pretty much just like your PC linux terminal, after installing this, add some of your dotfile configs and see the magic. 6 | 7 | 8 | ## Requirements 9 | 10 | * Termux 11 | * Love for your phone and linux 12 | 13 | 14 | ## Installation 15 | 16 | 1. Download Termux from Play-Store or F-Droid(and the termux-api too for better and more functionality) 17 | 2. Download the script or clone the repository 18 | 19 | ```bash 20 | git clone https://github.com/anorebel/OhMyTermux.git 21 | ``` 22 | 23 | 3. Run the script 24 | 25 | 26 | ```bash 27 | cd OhMyTermux 28 | 29 | ./install.sh 30 | ``` 31 | 32 | ### Credits 33 | 34 | * Termux 35 | * [4679 (oh-my-termux)](https://github.com/4679/) 36 | * [Cabbagec (Termux-ohmyzsh)](https://github.com/Cabbagec/) 37 | * [qntmpkts](https://github.com/qntmpkts/) 38 | 39 | 40 | ## Links 41 | 42 | [Play-Store](https://play.google.com/store/apps/details?id=com.termux) 43 | 44 | [F-Droid](https://f-droid.org/repository/browse/?fdid=com.termux) 45 | 46 | [Wiki](https://wiki.termux.com/wiki/) 47 | 48 | [HackEAC](https://www.hackeac.com) 49 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/data/data/com.termux/files/usr/bin/bash 2 | 3 | # Use colors, but only if connected to a terminal, and that terminal 4 | # supports them. 5 | if which tput >/dev/null 2>&1; then 6 | ncolors=$(tput colors) 7 | fi 8 | if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then 9 | RED="$(tput setaf 1)" 10 | GREEN="$(tput setaf 2)" 11 | YELLOW="$(tput setaf 3)" 12 | BLUE="$(tput setaf 4)" 13 | BOLD="$(tput bold)" 14 | NORMAL="$(tput sgr0)" 15 | else 16 | RED="" 17 | GREEN="" 18 | YELLOW="" 19 | BLUE="" 20 | BOLD="" 21 | NORMAL="" 22 | fi 23 | 24 | apt update 25 | apt install ruby -y 26 | gem install lolcat 27 | apt install -y git zsh figlet | lolcat 28 | 29 | cd $HOME 30 | 31 | clear 32 | 33 | git clone https://github.com/anorebel/OhMyTermux.git $HOME/OhMyTermux --depth 1 | lolcat 34 | 35 | if [ -d "$HOME/.termux" ]; then 36 | mv $HOME/.termux $HOME/.termux.bak 37 | fi 38 | 39 | cp -R $HOME/OhMyTermux/.termux $HOME/.termux 40 | 41 | git clone git://github.com/robbyrussell/oh-my-zsh.git $HOME/.oh-my-zsh --depth 1 | lolcat 42 | 43 | printf "${BLUE}Looking for an existing zsh config...${NORMAL}\n" 44 | if [ -f ~/.zshrc ] || [ -h ~/.zshrc ]; then 45 | printf "${YELLOW}Found ~/.zshrc.${NORMAL} ${GREEN}Backing up to ~/.zshrc.pre-oh-my-zsh${NORMAL}\n"; 46 | mv ~/.zshrc ~/.zshrc.pre-oh-my-zsh; 47 | fi 48 | 49 | printf "${BLUE}Using the Oh My Zsh template file and adding it to ~/.zshrc${NORMAL}\n" 50 | cp $HOME/.oh-my-zsh/templates/zshrc.zsh-template $HOME/.zshrc 51 | sed -i '/^ZSH_THEME/d' $HOME/.zshrc 52 | printf "${BLUE}Adding the agnoster theme which you can change later to anything in the ~/.zshrc${NORMAL}\n" 53 | sed -i '1iZSH_THEME="agnoster"' $HOME/.zshrc 54 | printf "${BLUE}Making zsh your default shell using 'chsh'${NORMAL}\n" 55 | chsh -s zsh 56 | 57 | termux-setup-storage 58 | 59 | figlet -f script -c "Done! " | lolcat 60 | 61 | echo "Choose your color scheme now: " | lolcat 62 | $HOME/.termux/colors.sh 63 | 64 | echo "Choose your font now: " | lolcat 65 | $HOME/.termux/fonts.sh 66 | 67 | printf "${GREEN}" 68 | echo ' __ ________ ' 69 | echo ' ____ / /_ ____ ___ __ __ /__ __/____ _ ____ ____ ___ __ __ ' 70 | echo ' / __ \/ __ \ / __ `__ \/ / / / / / /___ /| |___// __ `__ \ / / / / \\// ' 71 | echo '/ /_/ / / / / / / / / / / /_/ / / / / __/ / / / / / / / // /_/ / \ ' 72 | echo '\____/_/ /_/ /_/ /_/ /_/\__, / /_/ /___/ / / /_/ /_/ /_//_____/ //\\ ' 73 | echo ' /____/ ....is now installed!' 74 | echo '' 75 | echo '' 76 | echo 'Please look over the ~/.zshrc file to select plugins, themes, and options.' 77 | echo '' 78 | echo 'Please restart Termux app...' 79 | echo '' 80 | printf "${NORMAL}" 81 | 82 | exit 83 | 84 | --------------------------------------------------------------------------------