Overhaul design
This commit is contained in:
16
README.md
16
README.md
@@ -3,8 +3,10 @@ Dotfiles
|
|||||||
|
|
||||||
My personal configurations, managed with the 'dotdrop' submodule.
|
My personal configurations, managed with the 'dotdrop' submodule.
|
||||||
|
|
||||||

|
Accent-Color: #00d3a8
|
||||||

|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
| Usage | Name |
|
| Usage | Name |
|
||||||
| :--- | :--- |
|
| :--- | :--- |
|
||||||
@@ -12,9 +14,13 @@ My personal configurations, managed with the 'dotdrop' submodule.
|
|||||||
| Shell | zsh + oh-my-zsh |
|
| Shell | zsh + oh-my-zsh |
|
||||||
| WM | i3 (work), i3-gaps (home) |
|
| WM | i3 (work), i3-gaps (home) |
|
||||||
| Terminal | xterm |
|
| Terminal | xterm |
|
||||||
| Font | Inconsolata |
|
| Font | Inconsolata Nerd Font Mono |
|
||||||
| VIM-Theme | OneDark |
|
| VIM-Theme | Nord |
|
||||||
| VIM-Bar | lightline |
|
| VIM-Bar | airline |
|
||||||
|
| Xresources | Nord |
|
||||||
|
| Backlight | light |
|
||||||
|
| Notifications | dunst |
|
||||||
|
| Audio Control | playerctl |
|
||||||
| Bar | polybar |
|
| Bar | polybar |
|
||||||
| Transparency | picom |
|
| Transparency | picom |
|
||||||
| Wallpaper | teh |
|
| Wallpaper | teh |
|
||||||
|
|||||||
@@ -63,6 +63,9 @@ dotfiles:
|
|||||||
d_polybar:
|
d_polybar:
|
||||||
src: polybar
|
src: polybar
|
||||||
dst: ~/.config/polybar
|
dst: ~/.config/polybar
|
||||||
|
d_dunst:
|
||||||
|
src: dunst
|
||||||
|
dst: ~/.config/dunst
|
||||||
|
|
||||||
profiles:
|
profiles:
|
||||||
laptop:
|
laptop:
|
||||||
@@ -76,6 +79,7 @@ profiles:
|
|||||||
- tmux
|
- tmux
|
||||||
- wallpaper
|
- wallpaper
|
||||||
- polybar
|
- polybar
|
||||||
|
- dunst
|
||||||
work:
|
work:
|
||||||
include:
|
include:
|
||||||
- zsh
|
- zsh
|
||||||
@@ -128,3 +132,6 @@ profiles:
|
|||||||
polybar:
|
polybar:
|
||||||
dotfiles:
|
dotfiles:
|
||||||
- d_polybar
|
- d_polybar
|
||||||
|
dunst:
|
||||||
|
dotfiles:
|
||||||
|
- d_dunst
|
||||||
|
|||||||
2
dotdrop
2
dotdrop
Submodule dotdrop updated: 736941a147...141caef07f
@@ -31,7 +31,7 @@ XTerm.vt100.translations: #override \n\
|
|||||||
Ctrl <Key> plus: larger-vt-font()
|
Ctrl <Key> plus: larger-vt-font()
|
||||||
|
|
||||||
! some urxvt term settings
|
! some urxvt term settings
|
||||||
URxvt.font: xft:Inconsolata:size=11:antialias=true
|
URxvt.font: xft:Inconsolata Nerd Font Mono:size=11:antialias=true
|
||||||
URxvt.transparent: true
|
URxvt.transparent: true
|
||||||
URxvt.shading: 50
|
URxvt.shading: 50
|
||||||
URxvt.scrollBar: false
|
URxvt.scrollBar: false
|
||||||
|
|||||||
336
dotfiles/dunst/dunstrc
Normal file
336
dotfiles/dunst/dunstrc
Normal file
@@ -0,0 +1,336 @@
|
|||||||
|
[global]
|
||||||
|
### Display ###
|
||||||
|
|
||||||
|
# Which monitor should the notifications be displayed on.
|
||||||
|
monitor = 0
|
||||||
|
|
||||||
|
# Display notification on focused monitor. Possible modes are:
|
||||||
|
# mouse: follow mouse pointer
|
||||||
|
# keyboard: follow window with keyboard focus
|
||||||
|
# none: don't follow anything
|
||||||
|
#
|
||||||
|
# "keyboard" needs a window manager that exports the
|
||||||
|
# _NET_ACTIVE_WINDOW property.
|
||||||
|
# This should be the case for almost all modern window managers.
|
||||||
|
#
|
||||||
|
# If this option is set to mouse or keyboard, the monitor option
|
||||||
|
# will be ignored.
|
||||||
|
follow = mouse
|
||||||
|
|
||||||
|
# The geometry of the window:
|
||||||
|
# [{width}]x{height}[+/-{x}+/-{y}]
|
||||||
|
# The geometry of the message window.
|
||||||
|
# The height is measured in number of notifications everything else
|
||||||
|
# in pixels. If the width is omitted but the height is given
|
||||||
|
# ("-geometry x2"), the message window expands over the whole screen
|
||||||
|
# (dmenu-like). If width is 0, the window expands to the longest
|
||||||
|
# message displayed. A positive x is measured from the left, a
|
||||||
|
# negative from the right side of the screen. Y is measured from
|
||||||
|
# the top and down respectively.
|
||||||
|
# The width can be negative. In this case the actual width is the
|
||||||
|
# screen width minus the width defined in within the geometry option.
|
||||||
|
#geometry = "300x5-30+20"
|
||||||
|
geometry = "400x20-10+35"
|
||||||
|
|
||||||
|
# Show how many messages are currently hidden (because of geometry).
|
||||||
|
indicate_hidden = yes
|
||||||
|
|
||||||
|
# Shrink window if it's smaller than the width. Will be ignored if
|
||||||
|
# width is 0.
|
||||||
|
shrink = no
|
||||||
|
|
||||||
|
# The transparency of the window. Range: [0; 100].
|
||||||
|
# This option will only work if a compositing window manager is
|
||||||
|
# present (e.g. xcompmgr, compiz, etc.).
|
||||||
|
transparency = 20
|
||||||
|
|
||||||
|
# The height of the entire notification. If the height is smaller
|
||||||
|
# than the font height and padding combined, it will be raised
|
||||||
|
# to the font height and padding.
|
||||||
|
notification_height = 0
|
||||||
|
|
||||||
|
# Draw a line of "separator_height" pixel height between two
|
||||||
|
# notifications.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
separator_height = 2
|
||||||
|
|
||||||
|
# Padding between text and separator.
|
||||||
|
padding = 8
|
||||||
|
|
||||||
|
# Horizontal padding.
|
||||||
|
horizontal_padding = 8
|
||||||
|
|
||||||
|
# Defines width in pixels of frame around the notification window.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
frame_width = 5
|
||||||
|
|
||||||
|
# Defines color of the frame around the notification window.
|
||||||
|
frame_color = "#262626"
|
||||||
|
|
||||||
|
# Define a color for the separator.
|
||||||
|
# possible values are:
|
||||||
|
# * auto: dunst tries to find a color fitting to the background;
|
||||||
|
# * foreground: use the same color as the foreground;
|
||||||
|
# * frame: use the same color as the frame;
|
||||||
|
# * anything else will be interpreted as a X color.
|
||||||
|
separator_color = frame
|
||||||
|
|
||||||
|
# Sort messages by urgency.
|
||||||
|
sort = yes
|
||||||
|
|
||||||
|
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
||||||
|
# for longer than idle_threshold seconds.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# Transient notifications ignore this setting.
|
||||||
|
idle_threshold = 120
|
||||||
|
|
||||||
|
### Text ###
|
||||||
|
|
||||||
|
font = Inconsolata Nerd Font Mono 11
|
||||||
|
|
||||||
|
# The spacing between lines. If the height is smaller than the
|
||||||
|
# font height, it will get raised to the font height.
|
||||||
|
line_height = 0
|
||||||
|
|
||||||
|
# Possible values are:
|
||||||
|
# full: Allow a small subset of html markup in notifications:
|
||||||
|
# <b>bold</b>
|
||||||
|
# <i>italic</i>
|
||||||
|
# <s>strikethrough</s>
|
||||||
|
# <u>underline</u>
|
||||||
|
#
|
||||||
|
# For a complete reference see
|
||||||
|
# <http://developer.gnome.org/pango/stable/PangoMarkupFormat.html>.
|
||||||
|
#
|
||||||
|
# strip: This setting is provided for compatibility with some broken
|
||||||
|
# clients that send markup even though it's not enabled on the
|
||||||
|
# server. Dunst will try to strip the markup but the parsing is
|
||||||
|
# simplistic so using this option outside of matching rules for
|
||||||
|
# specific applications *IS GREATLY DISCOURAGED*.
|
||||||
|
#
|
||||||
|
# no: Disable markup parsing, incoming notifications will be treated as
|
||||||
|
# plain text. Dunst will not advertise that it has the body-markup
|
||||||
|
# capability if this is set as a global setting.
|
||||||
|
#
|
||||||
|
# It's important to note that markup inside the format option will be parsed
|
||||||
|
# regardless of what this is set to.
|
||||||
|
markup = full
|
||||||
|
|
||||||
|
# The format of the message. Possible variables are:
|
||||||
|
# %a appname
|
||||||
|
# %s summary
|
||||||
|
# %b body
|
||||||
|
# %i iconname (including its path)
|
||||||
|
# %I iconname (without its path)
|
||||||
|
# %p progress value if set ([ 0%] to [100%]) or nothing
|
||||||
|
# %n progress value if set without any extra characters
|
||||||
|
# %% Literal %
|
||||||
|
# Markup is allowed
|
||||||
|
format = "<b>%s</b>\n%b"
|
||||||
|
|
||||||
|
# Alignment of message text.
|
||||||
|
# Possible values are "left", "center" and "right".
|
||||||
|
alignment = left
|
||||||
|
|
||||||
|
# Show age of message if message is older than show_age_threshold
|
||||||
|
# seconds.
|
||||||
|
# Set to -1 to disable.
|
||||||
|
show_age_threshold = 60
|
||||||
|
|
||||||
|
# Split notifications into multiple lines if they don't fit into
|
||||||
|
# geometry.
|
||||||
|
word_wrap = yes
|
||||||
|
|
||||||
|
# When word_wrap is set to no, specify where to ellipsize long lines.
|
||||||
|
# Possible values are "start", "middle" and "end".
|
||||||
|
ellipsize = middle
|
||||||
|
|
||||||
|
# Ignore newlines '\n' in notifications.
|
||||||
|
ignore_newline = no
|
||||||
|
|
||||||
|
# Merge multiple notifications with the same content
|
||||||
|
stack_duplicates = true
|
||||||
|
|
||||||
|
# Hide the count of merged notifications with the same content
|
||||||
|
hide_duplicate_count = false
|
||||||
|
|
||||||
|
# Display indicators for URLs (U) and actions (A).
|
||||||
|
show_indicators = yes
|
||||||
|
|
||||||
|
### Icons ###
|
||||||
|
|
||||||
|
# Align icons left/right/off
|
||||||
|
icon_position = left
|
||||||
|
|
||||||
|
# Scale larger icons down to this size, set to 0 to disable
|
||||||
|
max_icon_size = 48
|
||||||
|
|
||||||
|
# Paths to default icons.
|
||||||
|
#icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
|
||||||
|
icon_path = /usr/share/icons/Adwaita/16x16/status/:/usr/share/icons/Adwaita/16x16/devices/
|
||||||
|
|
||||||
|
### History ###
|
||||||
|
|
||||||
|
# Should a notification popped up from history be sticky or timeout
|
||||||
|
# as if it would normally do.
|
||||||
|
sticky_history = yes
|
||||||
|
|
||||||
|
# Maximum amount of notifications kept in history
|
||||||
|
history_length = 20
|
||||||
|
|
||||||
|
### Misc/Advanced ###
|
||||||
|
|
||||||
|
# dmenu path.
|
||||||
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
|
||||||
|
# Browser for opening urls in context menu.
|
||||||
|
browser = /usr/bin/firefox -new-tab
|
||||||
|
|
||||||
|
# Always run rule-defined scripts, even if the notification is suppressed
|
||||||
|
always_run_script = true
|
||||||
|
|
||||||
|
# Define the title of the windows spawned by dunst
|
||||||
|
title = Dunst
|
||||||
|
|
||||||
|
# Define the class of the windows spawned by dunst
|
||||||
|
class = Dunst
|
||||||
|
|
||||||
|
# Print a notification on startup.
|
||||||
|
# This is mainly for error detection, since dbus (re-)starts dunst
|
||||||
|
# automatically after a crash.
|
||||||
|
startup_notification = true
|
||||||
|
|
||||||
|
### Legacy
|
||||||
|
|
||||||
|
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
||||||
|
# This setting is provided for compatibility with older nVidia drivers that
|
||||||
|
# do not support RandR and using it on systems that support RandR is highly
|
||||||
|
# discouraged.
|
||||||
|
#
|
||||||
|
# By enabling this setting dunst will not be able to detect when a monitor
|
||||||
|
# is connected or disconnected which might break follow mode if the screen
|
||||||
|
# layout changes.
|
||||||
|
force_xinerama = false
|
||||||
|
|
||||||
|
# Experimental features that may or may not work correctly. Do not expect them
|
||||||
|
# to have a consistent behaviour across releases.
|
||||||
|
[experimental]
|
||||||
|
# Calculate the dpi to use on a per-monitor basis.
|
||||||
|
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
||||||
|
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
||||||
|
# using the resolution and physical size. This might be useful in setups
|
||||||
|
# where there are multiple screens with very different dpi values.
|
||||||
|
per_monitor_dpi = false
|
||||||
|
|
||||||
|
[shortcuts]
|
||||||
|
|
||||||
|
# Shortcuts are specified as [modifier+][modifier+]...key
|
||||||
|
# Available modifiers are "ctrl", "mod1" (the alt-key), "mod2",
|
||||||
|
# "mod3" and "mod4" (windows-key).
|
||||||
|
# Xev might be helpful to find names for keys.
|
||||||
|
|
||||||
|
# Close notification.
|
||||||
|
close = ctrl+space
|
||||||
|
|
||||||
|
# Close all notifications.
|
||||||
|
close_all = ctrl+shift+space
|
||||||
|
|
||||||
|
# Redisplay last message(s).
|
||||||
|
# On the US keyboard layout "grave" is normally above TAB and left
|
||||||
|
# of "1". Make sure this key actually exists on your keyboard layout,
|
||||||
|
# e.g. check output of 'xmodmap -pke'
|
||||||
|
history = ctrl+grave
|
||||||
|
|
||||||
|
# Context menu.
|
||||||
|
context = ctrl+shift+period
|
||||||
|
|
||||||
|
[urgency_low]
|
||||||
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
|
background = "#00d3a8"
|
||||||
|
foreground = "#202124"
|
||||||
|
frame_color = "#202124"
|
||||||
|
timeout = 5
|
||||||
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
|
#icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_normal]
|
||||||
|
background = "#00d3a8"
|
||||||
|
foreground = "#202124"
|
||||||
|
frame_color = "#202124"
|
||||||
|
timeout = 5
|
||||||
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
|
#icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_critical]
|
||||||
|
background = "#00d3a8"
|
||||||
|
foreground = "#202124"
|
||||||
|
frame_color = "#202124"
|
||||||
|
timeout = 0
|
||||||
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
|
#icon = /path/to/icon
|
||||||
|
|
||||||
|
# Every section that isn't one of the above is interpreted as a rules to
|
||||||
|
# override settings for certain messages.
|
||||||
|
# Messages can be matched by "appname", "summary", "body", "icon", "category",
|
||||||
|
# "msg_urgency" and you can override the "timeout", "urgency", "foreground",
|
||||||
|
# "background", "new_icon" and "format".
|
||||||
|
# Shell-like globbing will get expanded.
|
||||||
|
#
|
||||||
|
# SCRIPTING
|
||||||
|
# You can specify a script that gets run when the rule matches by
|
||||||
|
# setting the "script" option.
|
||||||
|
# The script will be called as follows:
|
||||||
|
# script appname summary body icon urgency
|
||||||
|
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
||||||
|
#
|
||||||
|
# NOTE: if you don't want a notification to be displayed, set the format
|
||||||
|
# to "".
|
||||||
|
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
||||||
|
# to find fitting options for rules.
|
||||||
|
|
||||||
|
[slack]
|
||||||
|
appname = Slack
|
||||||
|
new_icon = /home/id0827502/images/icons/slack.png
|
||||||
|
urgency = normal
|
||||||
|
format = "<b>%s</b>\n\n%b"
|
||||||
|
|
||||||
|
#[espeak]
|
||||||
|
# summary = "*"
|
||||||
|
# script = dunst_espeak.sh
|
||||||
|
|
||||||
|
#[script-test]
|
||||||
|
# summary = "*script*"
|
||||||
|
# script = dunst_test.sh
|
||||||
|
|
||||||
|
#[ignore]
|
||||||
|
# # This notification will not be displayed
|
||||||
|
# summary = "foobar"
|
||||||
|
# format = ""
|
||||||
|
|
||||||
|
#[history-ignore]
|
||||||
|
# # This notification will not be saved in history
|
||||||
|
# summary = "foobar"
|
||||||
|
# history_ignore = yes
|
||||||
|
|
||||||
|
#[signed_on]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = "*signed on*"
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[signed_off]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *signed off*
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[says]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *says*
|
||||||
|
# urgency = critical
|
||||||
|
#
|
||||||
|
#[twitter]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *twitter.com*
|
||||||
|
# urgency = normal
|
||||||
|
#
|
||||||
|
# vim: ft=cfg
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,878 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<link rel="dns-prefetch" href="https://github.githubassets.com">
|
|
||||||
<link rel="dns-prefetch" href="https://avatars0.githubusercontent.com">
|
|
||||||
<link rel="dns-prefetch" href="https://avatars1.githubusercontent.com">
|
|
||||||
<link rel="dns-prefetch" href="https://avatars2.githubusercontent.com">
|
|
||||||
<link rel="dns-prefetch" href="https://avatars3.githubusercontent.com">
|
|
||||||
<link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
|
|
||||||
<link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link crossorigin="anonymous" media="all" integrity="sha512-Wr5yTs8gD42bv1Ll5KLXr7cXzuVcbKOcuHmifgt/6YlZuluDTyAJnfnYhNYKpgVK1F51ks8Y2QA+XENQoMp/PA==" rel="stylesheet" href="https://github.githubassets.com/assets/frameworks-5abe724ecf200f8d9bbf52e5e4a2d7af.css" />
|
|
||||||
<link crossorigin="anonymous" media="all" integrity="sha512-DnBQhWGJ7icZU4LPhD6FlaZ9IrBOmbP4/4bEfpGQRbCLwutaFNqbuAaM8Y/w7IygRCMuOybM7fLDGe+UV9TEjQ==" rel="stylesheet" href="https://github.githubassets.com/assets/site-0e7050856189ee27195382cf843e8595.css" />
|
|
||||||
<link crossorigin="anonymous" media="all" integrity="sha512-0y1r9T46lxgga0JM1aaMQSLHARH3h7/npxbbEYkhIR/QYHswdnq40YREqmndqF5+XeXluF7TuC3lMBRpRQ85fw==" rel="stylesheet" href="https://github.githubassets.com/assets/github-d32d6bf53e3a9718206b424cd5a68c41.css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width">
|
|
||||||
|
|
||||||
<title>nerd-fonts/Space Mono Nerd Font Complete Mono.ttf at master · ryanoasis/nerd-fonts · GitHub</title>
|
|
||||||
<meta name="description" content="Iconic font aggregator, collection, & patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, & more - ryanoasis/nerd-fonts">
|
|
||||||
|
|
||||||
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
|
|
||||||
<meta property="fb:app_id" content="1401488693436528">
|
|
||||||
|
|
||||||
<meta name="twitter:image:src" content="https://repository-images.githubusercontent.com/27574418/e3fca880-c1ad-11e9-8588-78686ecb4ca0" /><meta name="twitter:site" content="@github" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="ryanoasis/nerd-fonts" /><meta name="twitter:description" content="Iconic font aggregator, collection, &amp;amp; patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, &amp;amp; more..." />
|
|
||||||
<meta property="og:image" content="https://repository-images.githubusercontent.com/27574418/e3fca880-c1ad-11e9-8588-78686ecb4ca0" /><meta property="og:site_name" content="GitHub" /><meta property="og:type" content="object" /><meta property="og:title" content="ryanoasis/nerd-fonts" /><meta property="og:url" content="https://github.com/ryanoasis/nerd-fonts" /><meta property="og:description" content="Iconic font aggregator, collection, &amp; patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, &amp; more - ryano..." />
|
|
||||||
|
|
||||||
<link rel="assets" href="https://github.githubassets.com/">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="request-id" content="75F6:26604:B1F899:10367A5:5E3BCA19" data-pjax-transient="true" /><meta name="html-safe-nonce" content="5b40113626bf67bcb5b67dcbb497abbcfae6b1da" data-pjax-transient="true" /><meta name="visitor-payload" content="eyJyZWZlcnJlciI6bnVsbCwicmVxdWVzdF9pZCI6Ijc1RjY6MjY2MDQ6QjFGODk5OjEwMzY3QTU6NUUzQkNBMTkiLCJ2aXNpdG9yX2lkIjoiNDI4NzczNTU2MDQ5Njk5MDc0NiIsInJlZ2lvbl9lZGdlIjoiYW1zIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9" data-pjax-transient="true" /><meta name="visitor-hmac" content="6d356c69c7f56a5f8241f244b66f97689d42ba00147bda6f7e85a2a53b060774" data-pjax-transient="true" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="github-keyboard-shortcuts" content="repository,source-code" data-pjax-transient="true" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="selected-link" value="repo_source" data-pjax-transient>
|
|
||||||
|
|
||||||
<meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
|
|
||||||
<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
|
|
||||||
<meta name="google-site-verification" content="GXs5KoUUkNCoaAZn7wPN-t01Pywp9M3sEjnt_3_ZWPc">
|
|
||||||
|
|
||||||
<meta name="octolytics-host" content="collector.githubapp.com" /><meta name="octolytics-app-id" content="github" /><meta name="octolytics-event-url" content="https://collector.githubapp.com/github-external/browser_event" /><meta name="octolytics-dimension-ga_id" content="" class="js-octo-ga-id" />
|
|
||||||
<meta name="analytics-location" content="/<user-name>/<repo-name>/blob/show" data-pjax-transient="true" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="google-analytics" content="UA-3769691-2">
|
|
||||||
|
|
||||||
|
|
||||||
<meta class="js-ga-set" name="dimension1" content="Logged Out">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="hostname" content="github.com">
|
|
||||||
<meta name="user-login" content="">
|
|
||||||
|
|
||||||
<meta name="expected-hostname" content="github.com">
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="enabled-features" content="MARKETPLACE_FEATURED_BLOG_POSTS,MARKETPLACE_INVOICED_BILLING,MARKETPLACE_SOCIAL_PROOF_CUSTOMERS,MARKETPLACE_TRENDING_SOCIAL_PROOF,MARKETPLACE_RECOMMENDATIONS,MARKETPLACE_PENDING_INSTALLATIONS,RELATED_ISSUES">
|
|
||||||
|
|
||||||
<meta http-equiv="x-pjax-version" content="8f96ca6a75dbc84543e99442e6ce0946">
|
|
||||||
|
|
||||||
|
|
||||||
<link href="https://github.com/ryanoasis/nerd-fonts/commits/master.atom" rel="alternate" title="Recent Commits to nerd-fonts:master" type="application/atom+xml">
|
|
||||||
|
|
||||||
<meta name="go-import" content="github.com/ryanoasis/nerd-fonts git https://github.com/ryanoasis/nerd-fonts.git">
|
|
||||||
|
|
||||||
<meta name="octolytics-dimension-user_id" content="8083459" /><meta name="octolytics-dimension-user_login" content="ryanoasis" /><meta name="octolytics-dimension-repository_id" content="27574418" /><meta name="octolytics-dimension-repository_nwo" content="ryanoasis/nerd-fonts" /><meta name="octolytics-dimension-repository_public" content="true" /><meta name="octolytics-dimension-repository_is_fork" content="false" /><meta name="octolytics-dimension-repository_network_root_id" content="27574418" /><meta name="octolytics-dimension-repository_network_root_nwo" content="ryanoasis/nerd-fonts" /><meta name="octolytics-dimension-repository_explore_github_marketplace_ci_cta_shown" content="false" />
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="canonical" href="https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf" data-pjax-transient>
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
|
|
||||||
|
|
||||||
<meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
|
|
||||||
|
|
||||||
<link rel="mask-icon" href="https://github.githubassets.com/pinned-octocat.svg" color="#000000">
|
|
||||||
<link rel="icon" type="image/x-icon" class="js-site-favicon" href="https://github.githubassets.com/favicon.ico">
|
|
||||||
|
|
||||||
<meta name="theme-color" content="#1e2327">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="manifest" href="/manifest.json" crossOrigin="use-credentials">
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="logged-out env-production page-responsive page-blob">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="position-relative js-header-wrapper ">
|
|
||||||
<a href="#start-of-content" tabindex="1" class="px-2 py-4 bg-blue text-white show-on-focus js-skip-to-content">Skip to content</a>
|
|
||||||
<span class="Progress progress-pjax-loader position-fixed width-full js-pjax-loader-bar">
|
|
||||||
<span class="progress-pjax-loader-bar top-0 left-0" style="width: 0%;"></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<header class="Header-old header-logged-out js-details-container Details position-relative f4 py-2" role="banner">
|
|
||||||
<div class="container-lg d-lg-flex flex-items-center p-responsive">
|
|
||||||
<div class="d-flex flex-justify-between flex-items-center">
|
|
||||||
<a class="mr-4" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
|
|
||||||
<svg height="32" class="octicon octicon-mark-github text-white" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="d-lg-none css-truncate css-truncate-target width-fit p-2">
|
|
||||||
|
|
||||||
<svg class="octicon octicon-repo" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
|
|
||||||
<a class="Header-link" href="/ryanoasis">ryanoasis</a>
|
|
||||||
/
|
|
||||||
<a class="Header-link" href="/ryanoasis/nerd-fonts">nerd-fonts</a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="d-flex flex-items-center">
|
|
||||||
<a href="/join?source=header-repo"
|
|
||||||
class="d-inline-block d-lg-none f5 text-white no-underline border border-gray-dark rounded-2 px-2 py-1 mr-3 mr-sm-5"
|
|
||||||
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf","user_id":null}}" data-hydro-click-hmac="429e51fe03344e48e3fcafcc0ba91be70fca233a5bea60dff153c9759a61e516"
|
|
||||||
data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">
|
|
||||||
Sign up
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<button class="btn-link d-lg-none mt-1 js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
|
|
||||||
<svg height="24" class="octicon octicon-three-bars text-white" viewBox="0 0 12 16" version="1.1" width="18" aria-hidden="true"><path fill-rule="evenodd" d="M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z"/></svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="HeaderMenu HeaderMenu--logged-out position-fixed top-0 right-0 bottom-0 height-fit position-lg-relative d-lg-flex flex-justify-between flex-items-center flex-auto">
|
|
||||||
<div class="d-flex d-lg-none flex-justify-end border-bottom bg-gray-light p-3">
|
|
||||||
<button class="btn-link js-details-target" type="button" aria-label="Toggle navigation" aria-expanded="false">
|
|
||||||
<svg height="24" class="octicon octicon-x text-gray" viewBox="0 0 12 16" version="1.1" width="18" aria-hidden="true"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z"/></svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<nav class="mt-0 px-3 px-lg-0 mb-5 mb-lg-0" aria-label="Global">
|
|
||||||
<ul class="d-lg-flex list-style-none">
|
|
||||||
<li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
|
|
||||||
<details class="HeaderMenu-details details-overlay details-reset width-full">
|
|
||||||
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
|
|
||||||
Why GitHub?
|
|
||||||
<svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
|
|
||||||
<path d="M1,1l6.2,6L13,1"></path>
|
|
||||||
</svg>
|
|
||||||
</summary>
|
|
||||||
<div class="dropdown-menu flex-auto rounded-1 bg-white px-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
|
|
||||||
<a href="/features" class="py-2 lh-condensed-ultra d-block link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Features">Features <span class="Bump-link-symbol float-right text-normal text-gray-light">→</span></a>
|
|
||||||
<ul class="list-style-none f5 pb-3">
|
|
||||||
<li class="edge-item-fix"><a href="/features/code-review/" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Code review">Code review</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/features/project-management/" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Project management">Project management</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/features/integrations" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Integrations">Integrations</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/features/actions" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Actions">Actions</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/features/packages" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to GitHub Packages">Packages</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/features/security" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Security">Security</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/features#team-management" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Team management">Team management</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/features#hosting" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Code hosting">Hosting</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul class="list-style-none mb-0 border-lg-top pt-lg-3">
|
|
||||||
<li class="edge-item-fix"><a href="/customer-stories" class="py-2 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Customer stories">Customer stories <span class="Bump-link-symbol float-right text-normal text-gray-light">→</span></a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/security" class="py-2 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Security">Security <span class="Bump-link-symbol float-right text-normal text-gray-light">→</span></a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</details>
|
|
||||||
</li>
|
|
||||||
<li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
|
|
||||||
<a href="/enterprise" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Enterprise">Enterprise</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
|
|
||||||
<details class="HeaderMenu-details details-overlay details-reset width-full">
|
|
||||||
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
|
|
||||||
Explore
|
|
||||||
<svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
|
|
||||||
<path d="M1,1l6.2,6L13,1"></path>
|
|
||||||
</svg>
|
|
||||||
</summary>
|
|
||||||
|
|
||||||
<div class="dropdown-menu flex-auto rounded-1 bg-white px-0 pt-2 pb-0 mt-0 pb-4 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
|
|
||||||
<ul class="list-style-none mb-3">
|
|
||||||
<li class="edge-item-fix"><a href="/explore" class="py-2 lh-condensed-ultra d-block link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Explore">Explore GitHub <span class="Bump-link-symbol float-right text-normal text-gray-light">→</span></a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h4 class="text-gray-light text-normal text-mono f5 mb-2 border-lg-top pt-lg-3">Learn & contribute</h4>
|
|
||||||
<ul class="list-style-none mb-3">
|
|
||||||
<li class="edge-item-fix"><a href="/topics" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Topics">Topics</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/collections" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Collections">Collections</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="/trending" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Trending">Trending</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="https://lab.github.com/" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Learning lab">Learning Lab</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="https://opensource.guide" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Open source guides">Open source guides</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h4 class="text-gray-light text-normal text-mono f5 mb-2 border-lg-top pt-lg-3">Connect with others</h4>
|
|
||||||
<ul class="list-style-none mb-0">
|
|
||||||
<li class="edge-item-fix"><a href="https://github.com/events" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Events">Events</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="https://github.community" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Community forum">Community forum</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="https://education.github.com" class="py-2 pb-0 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to GitHub Education">GitHub Education</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</details>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="border-bottom border-lg-bottom-0 mr-0 mr-lg-3">
|
|
||||||
<a href="/marketplace" class="HeaderMenu-link no-underline py-3 d-block d-lg-inline-block" data-ga-click="(Logged out) Header, go to Marketplace">Marketplace</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="d-block d-lg-flex flex-lg-nowrap flex-lg-items-center border-bottom border-lg-bottom-0 mr-0 mr-lg-3 edge-item-fix position-relative flex-wrap flex-justify-between d-flex flex-items-center ">
|
|
||||||
<details class="HeaderMenu-details details-overlay details-reset width-full">
|
|
||||||
<summary class="HeaderMenu-summary HeaderMenu-link px-0 py-3 border-0 no-wrap d-block d-lg-inline-block">
|
|
||||||
Pricing
|
|
||||||
<svg x="0px" y="0px" viewBox="0 0 14 8" xml:space="preserve" fill="none" class="icon-chevon-down-mktg position-absolute position-lg-relative">
|
|
||||||
<path d="M1,1l6.2,6L13,1"></path>
|
|
||||||
</svg>
|
|
||||||
</summary>
|
|
||||||
|
|
||||||
<div class="dropdown-menu flex-auto rounded-1 bg-white px-0 pt-2 pb-4 mt-0 p-lg-4 position-relative position-lg-absolute left-0 left-lg-n4">
|
|
||||||
<a href="/pricing" class="pb-2 lh-condensed-ultra d-block link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Pricing">Plans <span class="Bump-link-symbol float-right text-normal text-gray-light">→</span></a>
|
|
||||||
|
|
||||||
<ul class="list-style-none mb-3">
|
|
||||||
<li class="edge-item-fix"><a href="/pricing#feature-comparison" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Compare plans">Compare plans</a></li>
|
|
||||||
<li class="edge-item-fix"><a href="https://enterprise.github.com/contact" class="py-2 lh-condensed-ultra d-block link-gray no-underline f5" data-ga-click="(Logged out) Header, go to Contact Sales">Contact Sales</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul class="list-style-none mb-0 border-lg-top pt-lg-3">
|
|
||||||
<li class="edge-item-fix"><a href="/nonprofit" class="py-2 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Nonprofits">Nonprofit <span class="Bump-link-symbol float-right text-normal text-gray-light">→</span></a></li>
|
|
||||||
<li class="edge-item-fix"><a href="https://education.github.com" class="py-2 pb-0 lh-condensed-ultra d-block no-underline link-gray-dark no-underline h5 Bump-link--hover" data-ga-click="(Logged out) Header, go to Education">Education <span class="Bump-link-symbol float-right text-normal text-gray-light">→</span></a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</details>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="d-lg-flex flex-items-center px-3 px-lg-0 text-center text-lg-left">
|
|
||||||
<div class="d-lg-flex mb-3 mb-lg-0">
|
|
||||||
<div class="header-search flex-self-stretch flex-lg-self-auto mr-0 mr-lg-3 mb-3 mb-lg-0 scoped-search site-scoped-search js-site-search position-relative js-jump-to"
|
|
||||||
role="combobox"
|
|
||||||
aria-owns="jump-to-results"
|
|
||||||
aria-label="Search or jump to"
|
|
||||||
aria-haspopup="listbox"
|
|
||||||
aria-expanded="false"
|
|
||||||
>
|
|
||||||
<div class="position-relative">
|
|
||||||
</option></form><form class="js-site-search-form" role="search" aria-label="Site" data-scope-type="Repository" data-scope-id="27574418" data-scoped-search-url="/ryanoasis/nerd-fonts/search" data-unscoped-search-url="/search" action="/ryanoasis/nerd-fonts/search" accept-charset="UTF-8" method="get"><input name="utf8" type="hidden" value="✓" />
|
|
||||||
<label class="form-control input-sm header-search-wrapper p-0 header-search-wrapper-jump-to position-relative d-flex flex-justify-between flex-items-center js-chromeless-input-container">
|
|
||||||
<input type="text"
|
|
||||||
class="form-control input-sm header-search-input jump-to-field js-jump-to-field js-site-search-focus js-site-search-field is-clearable"
|
|
||||||
data-hotkey="s,/"
|
|
||||||
name="q"
|
|
||||||
value=""
|
|
||||||
placeholder="Search"
|
|
||||||
data-unscoped-placeholder="Search GitHub"
|
|
||||||
data-scoped-placeholder="Search"
|
|
||||||
autocapitalize="off"
|
|
||||||
aria-autocomplete="list"
|
|
||||||
aria-controls="jump-to-results"
|
|
||||||
aria-label="Search"
|
|
||||||
data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations"
|
|
||||||
spellcheck="false"
|
|
||||||
autocomplete="off"
|
|
||||||
>
|
|
||||||
<input type="hidden" value="4qN1zcWWg1sDBJgw5EZr/u1MpvJyVdGzS8K01G8mMpV2mTR/1rCSpmKK1jyPBYvCLDlcfG6trBiRdIS2c1PGGw==" data-csrf="true" class="js-data-jump-to-suggestions-path-csrf" />
|
|
||||||
<input type="hidden" class="js-site-search-type-field" name="type" >
|
|
||||||
<img src="https://github.githubassets.com/images/search-key-slash.svg" alt="" class="mr-2 header-search-key-slash">
|
|
||||||
|
|
||||||
<div class="Box position-absolute overflow-hidden d-none jump-to-suggestions js-jump-to-suggestions-container">
|
|
||||||
|
|
||||||
<ul class="d-none js-jump-to-suggestions-template-container">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-suggestion" role="option">
|
|
||||||
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
|
|
||||||
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
|
|
||||||
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 12 16" version="1.1" role="img"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
|
|
||||||
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 15 16" version="1.1" role="img"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg>
|
|
||||||
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"/></svg>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
|
|
||||||
|
|
||||||
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
|
|
||||||
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
|
|
||||||
In this repository
|
|
||||||
</span>
|
|
||||||
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
|
|
||||||
All GitHub
|
|
||||||
</span>
|
|
||||||
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
|
|
||||||
Jump to
|
|
||||||
<span class="d-inline-block ml-1 v-align-middle">↵</span>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul class="d-none js-jump-to-no-results-template-container">
|
|
||||||
<li class="d-flex flex-justify-center flex-items-center f5 d-none js-jump-to-suggestion p-2">
|
|
||||||
<span class="text-gray">No suggested jump to results</span>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul id="jump-to-results" role="listbox" class="p-0 m-0 js-navigation-container jump-to-suggestions-results-container js-jump-to-suggestions-results-container">
|
|
||||||
|
|
||||||
|
|
||||||
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-scoped-search d-none" role="option">
|
|
||||||
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
|
|
||||||
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
|
|
||||||
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 12 16" version="1.1" role="img"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
|
|
||||||
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 15 16" version="1.1" role="img"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg>
|
|
||||||
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"/></svg>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
|
|
||||||
|
|
||||||
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
|
|
||||||
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
|
|
||||||
In this repository
|
|
||||||
</span>
|
|
||||||
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
|
|
||||||
All GitHub
|
|
||||||
</span>
|
|
||||||
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
|
|
||||||
Jump to
|
|
||||||
<span class="d-inline-block ml-1 v-align-middle">↵</span>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="d-flex flex-justify-start flex-items-center p-0 f5 navigation-item js-navigation-item js-jump-to-global-search d-none" role="option">
|
|
||||||
<a tabindex="-1" class="no-underline d-flex flex-auto flex-items-center jump-to-suggestions-path js-jump-to-suggestion-path js-navigation-open p-2" href="">
|
|
||||||
<div class="jump-to-octicon js-jump-to-octicon flex-shrink-0 mr-2 text-center d-none">
|
|
||||||
<svg height="16" width="16" class="octicon octicon-repo flex-shrink-0 js-jump-to-octicon-repo d-none" title="Repository" aria-label="Repository" viewBox="0 0 12 16" version="1.1" role="img"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
|
|
||||||
<svg height="16" width="16" class="octicon octicon-project flex-shrink-0 js-jump-to-octicon-project d-none" title="Project" aria-label="Project" viewBox="0 0 15 16" version="1.1" role="img"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg>
|
|
||||||
<svg height="16" width="16" class="octicon octicon-search flex-shrink-0 js-jump-to-octicon-search d-none" title="Search" aria-label="Search" viewBox="0 0 16 16" version="1.1" role="img"><path fill-rule="evenodd" d="M15.7 13.3l-3.81-3.83A5.93 5.93 0 0013 6c0-3.31-2.69-6-6-6S1 2.69 1 6s2.69 6 6 6c1.3 0 2.48-.41 3.47-1.11l3.83 3.81c.19.2.45.3.7.3.25 0 .52-.09.7-.3a.996.996 0 000-1.41v.01zM7 10.7c-2.59 0-4.7-2.11-4.7-4.7 0-2.59 2.11-4.7 4.7-4.7 2.59 0 4.7 2.11 4.7 4.7 0 2.59-2.11 4.7-4.7 4.7z"/></svg>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<img class="avatar mr-2 flex-shrink-0 js-jump-to-suggestion-avatar d-none" alt="" aria-label="Team" src="" width="28" height="28">
|
|
||||||
|
|
||||||
<div class="jump-to-suggestion-name js-jump-to-suggestion-name flex-auto overflow-hidden text-left no-wrap css-truncate css-truncate-target">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none js-jump-to-badge-search">
|
|
||||||
<span class="js-jump-to-badge-search-text-default d-none" aria-label="in this repository">
|
|
||||||
In this repository
|
|
||||||
</span>
|
|
||||||
<span class="js-jump-to-badge-search-text-global d-none" aria-label="in all of GitHub">
|
|
||||||
All GitHub
|
|
||||||
</span>
|
|
||||||
<span aria-hidden="true" class="d-inline-block ml-1 v-align-middle">↵</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div aria-hidden="true" class="border rounded-1 flex-shrink-0 bg-gray px-1 text-gray-light ml-1 f6 d-none d-on-nav-focus js-jump-to-badge-jump">
|
|
||||||
Jump to
|
|
||||||
<span class="d-inline-block ml-1 v-align-middle">↵</span>
|
|
||||||
</div>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</label>
|
|
||||||
</form> </div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<a href="/login?return_to=%2Fryanoasis%2Fnerd-fonts%2Fblob%2Fmaster%2Fpatched-fonts%2FSpaceMono%2FRegular%2Fcomplete%2FSpace%2520Mono%2520Nerd%2520Font%2520Complete%2520Mono.ttf"
|
|
||||||
class="HeaderMenu-link no-underline mr-3"
|
|
||||||
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header menu","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf","user_id":null}}" data-hydro-click-hmac="6589a5f75c8bd62df5f3cf6376b97aa5e399012af2c642c1fa361e9a4d92b047"
|
|
||||||
data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">
|
|
||||||
Sign in
|
|
||||||
</a>
|
|
||||||
<a href="/join?source=header-repo&source_repo=ryanoasis%2Fnerd-fonts"
|
|
||||||
class="HeaderMenu-link d-inline-block no-underline border border-gray-dark rounded-1 px-2 py-1"
|
|
||||||
data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"site header menu","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf","user_id":null}}" data-hydro-click-hmac="6589a5f75c8bd62df5f3cf6376b97aa5e399012af2c642c1fa361e9a4d92b047"
|
|
||||||
data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">
|
|
||||||
Sign up
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="start-of-content" class="show-on-focus"></div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="js-flash-container">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="application-main " data-commit-hovercards-enabled>
|
|
||||||
<div itemscope itemtype="http://schema.org/SoftwareSourceCode" class="">
|
|
||||||
<main >
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="pagehead repohead readability-menu bg-gray-light pb-0 pt-0 pt-lg-3 pb-0">
|
|
||||||
|
|
||||||
<div class="container-lg mb-4 p-responsive d-none d-lg-flex">
|
|
||||||
|
|
||||||
<div class="flex-auto min-width-0 width-fit mr-3">
|
|
||||||
<h1 class="public d-flex flex-wrap flex-items-center break-word float-none ">
|
|
||||||
<svg class="octicon octicon-repo" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"/></svg>
|
|
||||||
<span class="author ml-1 flex-self-stretch" itemprop="author">
|
|
||||||
<a class="url fn" rel="author" data-hovercard-type="user" data-hovercard-url="/users/ryanoasis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="/ryanoasis">ryanoasis</a>
|
|
||||||
</span>
|
|
||||||
<span class="path-divider flex-self-stretch">/</span>
|
|
||||||
<strong itemprop="name" class="mr-2 flex-self-stretch">
|
|
||||||
<a data-pjax="#js-repo-pjax-container" href="/ryanoasis/nerd-fonts">nerd-fonts</a>
|
|
||||||
</strong>
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<ul class="pagehead-actions flex-shrink-0" >
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li>
|
|
||||||
|
|
||||||
<a class="tooltipped tooltipped-s btn btn-sm btn-with-count" aria-label="You must be signed in to watch a repository" rel="nofollow" data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"notification subscription menu watch","repository_id":null,"auth_type":"LOG_IN","originating_url":"https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf","user_id":null}}" data-hydro-click-hmac="fcc01e248b80cd9637ac7671280f660d485079d3a35d5e1d525d8e2abbcf7bdd" href="/login?return_to=%2Fryanoasis%2Fnerd-fonts">
|
|
||||||
<svg class="octicon octicon-eye v-align-text-bottom" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"/></svg>
|
|
||||||
Watch
|
|
||||||
</a> <a class="social-count" href="/ryanoasis/nerd-fonts/watchers"
|
|
||||||
aria-label="332 users are watching this repository">
|
|
||||||
332
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a class="btn btn-sm btn-with-count tooltipped tooltipped-s" aria-label="You must be signed in to star a repository" rel="nofollow" data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"star button","repository_id":27574418,"auth_type":"LOG_IN","originating_url":"https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf","user_id":null}}" data-hydro-click-hmac="bb572b0166c07b28eb7ebb63b49105047002ccba3fbca02d75a98872d7cbf2a5" href="/login?return_to=%2Fryanoasis%2Fnerd-fonts">
|
|
||||||
<svg aria-label="star" height="16" class="octicon octicon-star v-align-text-bottom" viewBox="0 0 14 16" version="1.1" width="14" role="img"><path fill-rule="evenodd" d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74L14 6z"/></svg>
|
|
||||||
|
|
||||||
Star
|
|
||||||
</a>
|
|
||||||
<a class="social-count js-social-count" href="/ryanoasis/nerd-fonts/stargazers"
|
|
||||||
aria-label="19298 users starred this repository">
|
|
||||||
19.3k
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a class="btn btn-sm btn-with-count tooltipped tooltipped-s" aria-label="You must be signed in to fork a repository" rel="nofollow" data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"repo details fork button","repository_id":27574418,"auth_type":"LOG_IN","originating_url":"https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf","user_id":null}}" data-hydro-click-hmac="7b72b0e380ef83367753a2a409769e00ccbaec32ec287359104552d242d7d666" href="/login?return_to=%2Fryanoasis%2Fnerd-fonts">
|
|
||||||
<svg class="octicon octicon-repo-forked v-align-text-bottom" viewBox="0 0 10 16" version="1.1" width="10" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8 1a1.993 1.993 0 00-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 002 1a1.993 1.993 0 00-1 3.72V6.5l3 3v1.78A1.993 1.993 0 005 15a1.993 1.993 0 001-3.72V9.5l3-3V4.72A1.993 1.993 0 008 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg>
|
|
||||||
Fork
|
|
||||||
</a>
|
|
||||||
<a href="/ryanoasis/nerd-fonts/network/members" class="social-count"
|
|
||||||
aria-label="1296 users forked this repository">
|
|
||||||
1.3k
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<nav class="hx_reponav reponav js-repo-nav js-sidenav-container-pjax clearfix container-lg p-responsive d-none d-lg-block"
|
|
||||||
itemscope
|
|
||||||
itemtype="http://schema.org/BreadcrumbList"
|
|
||||||
aria-label="Repository"
|
|
||||||
data-pjax="#js-repo-pjax-container">
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a class="js-selected-navigation-item selected reponav-item" itemprop="url" data-hotkey="g c" aria-current="page" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages /ryanoasis/nerd-fonts" href="/ryanoasis/nerd-fonts">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-code" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"/></svg></div>
|
|
||||||
<span itemprop="name">Code</span>
|
|
||||||
<meta itemprop="position" content="1">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a itemprop="url" data-hotkey="g i" class="js-selected-navigation-item reponav-item" data-selected-links="repo_issues repo_labels repo_milestones /ryanoasis/nerd-fonts/issues" href="/ryanoasis/nerd-fonts/issues">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-issue-opened" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 011.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"/></svg></div>
|
|
||||||
<span itemprop="name">Issues</span>
|
|
||||||
<span class="Counter">111</span>
|
|
||||||
<meta itemprop="position" content="2">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a data-hotkey="g p" data-skip-pjax="true" itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_pulls checks /ryanoasis/nerd-fonts/pulls" href="/ryanoasis/nerd-fonts/pulls">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-git-pull-request" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0010 15a1.993 1.993 0 001-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 00-1 3.72v6.56A1.993 1.993 0 002 15a1.993 1.993 0 001-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"/></svg></div>
|
|
||||||
<span itemprop="name">Pull requests</span>
|
|
||||||
<span class="Counter">1</span>
|
|
||||||
<meta itemprop="position" content="4">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement" class="position-relative float-left">
|
|
||||||
<a data-hotkey="g w" data-skip-pjax="true" class="js-selected-navigation-item reponav-item" data-selected-links="repo_actions /ryanoasis/nerd-fonts/actions" href="/ryanoasis/nerd-fonts/actions">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-play" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M14 8A7 7 0 110 8a7 7 0 0114 0zm-8.223 3.482l4.599-3.066a.5.5 0 000-.832L5.777 4.518A.5.5 0 005 4.934v6.132a.5.5 0 00.777.416z"/></svg></div>
|
|
||||||
Actions
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
<a data-hotkey="g b" class="js-selected-navigation-item reponav-item" data-selected-links="repo_projects new_repo_project repo_project /ryanoasis/nerd-fonts/projects" href="/ryanoasis/nerd-fonts/projects">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-project" viewBox="0 0 15 16" version="1.1" width="15" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M10 12h3V2h-3v10zm-4-2h3V2H6v8zm-4 4h3V2H2v12zm-1 1h13V1H1v14zM14 0H1a1 1 0 00-1 1v14a1 1 0 001 1h13a1 1 0 001-1V1a1 1 0 00-1-1z"/></svg></div>
|
|
||||||
Projects
|
|
||||||
<span class="Counter" >0</span>
|
|
||||||
</a>
|
|
||||||
<a class="js-selected-navigation-item reponav-item" data-hotkey="g w" data-selected-links="repo_wiki /ryanoasis/nerd-fonts/wiki" href="/ryanoasis/nerd-fonts/wiki">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-book" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M3 5h4v1H3V5zm0 3h4V7H3v1zm0 2h4V9H3v1zm11-5h-4v1h4V5zm0 2h-4v1h4V7zm0 2h-4v1h4V9zm2-6v9c0 .55-.45 1-1 1H9.5l-1 1-1-1H2c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5.5l1 1 1-1H15c.55 0 1 .45 1 1zm-8 .5L7.5 3H2v9h6V3.5zm7-.5H9.5l-.5.5V12h6V3z"/></svg></div>
|
|
||||||
Wiki
|
|
||||||
</a>
|
|
||||||
<a data-skip-pjax="true" class="js-selected-navigation-item reponav-item" data-selected-links="security alerts policy token_scanning code_scanning /ryanoasis/nerd-fonts/security/advisories" href="/ryanoasis/nerd-fonts/security/advisories">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-shield" viewBox="0 0 14 16" version="1.1" width="14" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M0 2l7-2 7 2v6.02C14 12.69 8.69 16 7 16c-1.69 0-7-3.31-7-7.98V2zm1 .75L7 1l6 1.75v5.268C13 12.104 8.449 15 7 15c-1.449 0-6-2.896-6-6.982V2.75zm1 .75L7 2v12c-1.207 0-5-2.482-5-5.985V3.5z"/></svg></div>
|
|
||||||
Security
|
|
||||||
</a>
|
|
||||||
<a class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors dependency_graph pulse people /ryanoasis/nerd-fonts/pulse" href="/ryanoasis/nerd-fonts/pulse">
|
|
||||||
<div class="d-inline"><svg class="octicon octicon-graph" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"/></svg></div>
|
|
||||||
Insights
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="reponav-wrapper reponav-small d-lg-none">
|
|
||||||
<nav class="reponav js-reponav text-center no-wrap"
|
|
||||||
itemscope
|
|
||||||
itemtype="http://schema.org/BreadcrumbList">
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a class="js-selected-navigation-item selected reponav-item" itemprop="url" aria-current="page" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages /ryanoasis/nerd-fonts" href="/ryanoasis/nerd-fonts">
|
|
||||||
<span itemprop="name">Code</span>
|
|
||||||
<meta itemprop="position" content="1">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_issues repo_labels repo_milestones /ryanoasis/nerd-fonts/issues" href="/ryanoasis/nerd-fonts/issues">
|
|
||||||
<span itemprop="name">Issues</span>
|
|
||||||
<span class="Counter">111</span>
|
|
||||||
<meta itemprop="position" content="2">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_pulls checks /ryanoasis/nerd-fonts/pulls" href="/ryanoasis/nerd-fonts/pulls">
|
|
||||||
<span itemprop="name">Pull requests</span>
|
|
||||||
<span class="Counter">1</span>
|
|
||||||
<meta itemprop="position" content="4">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_projects new_repo_project repo_project /ryanoasis/nerd-fonts/projects" href="/ryanoasis/nerd-fonts/projects">
|
|
||||||
<span itemprop="name">Projects</span>
|
|
||||||
<span class="Counter">0</span>
|
|
||||||
<meta itemprop="position" content="5">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_actions /ryanoasis/nerd-fonts/actions" href="/ryanoasis/nerd-fonts/actions">
|
|
||||||
<span itemprop="name">Actions</span>
|
|
||||||
<meta itemprop="position" content="6">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
<span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
|
|
||||||
<a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="repo_wiki /ryanoasis/nerd-fonts/wiki" href="/ryanoasis/nerd-fonts/wiki">
|
|
||||||
<span itemprop="name">Wiki</span>
|
|
||||||
<meta itemprop="position" content="7">
|
|
||||||
</a> </span>
|
|
||||||
|
|
||||||
<a itemprop="url" class="js-selected-navigation-item reponav-item" data-selected-links="security alerts policy token_scanning code_scanning /ryanoasis/nerd-fonts/security/advisories" href="/ryanoasis/nerd-fonts/security/advisories">
|
|
||||||
<span itemprop="name">Security</span>
|
|
||||||
<meta itemprop="position" content="8">
|
|
||||||
</a>
|
|
||||||
<a class="js-selected-navigation-item reponav-item" data-selected-links="pulse /ryanoasis/nerd-fonts/pulse" href="/ryanoasis/nerd-fonts/pulse">
|
|
||||||
Pulse
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="container-lg clearfix new-discussion-timeline p-responsive">
|
|
||||||
<div class="repository-content ">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="d-none js-permalink-shortcut" data-hotkey="y" href="/ryanoasis/nerd-fonts/blob/a83c645e75fc63ca7f5757445c67bc90397a90eb/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf">Permalink</a>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="signup-prompt-bg rounded-1 js-signup-prompt" data-prompt="signup" hidden>
|
|
||||||
<div class="signup-prompt p-4 text-center mb-4 rounded-1">
|
|
||||||
<div class="position-relative">
|
|
||||||
<button type="button" class="position-absolute top-0 right-0 btn-link link-gray js-signup-prompt-button" data-ga-click="(Logged out) Sign up prompt, clicked Dismiss, text:dismiss">
|
|
||||||
Dismiss
|
|
||||||
</button>
|
|
||||||
<h3 class="pt-2">Join GitHub today</h3>
|
|
||||||
<p class="col-6 mx-auto">GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.</p>
|
|
||||||
<a class="btn btn-primary" data-hydro-click="{"event_type":"authentication.click","payload":{"location_in_page":"files signup prompt","repository_id":null,"auth_type":"SIGN_UP","originating_url":"https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf","user_id":null}}" data-hydro-click-hmac="125e9a7ca68f91b22119b16522d8e986031df726cf5c0be6cb2c220916b70b6a" data-ga-click="(Logged out) Sign up prompt, clicked Sign up, text:sign-up" href="/join?source=prompt-blob-show&source_repo=ryanoasis%2Fnerd-fonts">Sign up</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="d-flex flex-items-start flex-shrink-0 pb-3 flex-column flex-md-row">
|
|
||||||
<span class="d-flex flex-justify-between width-full width-md-auto">
|
|
||||||
|
|
||||||
<details class="details-reset details-overlay branch-select-menu " id="branch-select-menu">
|
|
||||||
<summary class="btn btn-sm css-truncate"
|
|
||||||
data-hotkey="w"
|
|
||||||
title="Switch branches or tags">
|
|
||||||
<i>Branch:</i>
|
|
||||||
<span class="css-truncate-target" data-menu-button>master</span>
|
|
||||||
<span class="dropdown-caret"></span>
|
|
||||||
</summary>
|
|
||||||
|
|
||||||
<details-menu class="SelectMenu SelectMenu--hasFilter" src="/ryanoasis/nerd-fonts/refs/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf?source_action=show&source_controller=blob" preload>
|
|
||||||
<div class="SelectMenu-modal">
|
|
||||||
<include-fragment class="SelectMenu-loading" aria-label="Menu is loading">
|
|
||||||
<svg class="octicon octicon-octoface anim-pulse" height="32" viewBox="0 0 16 16" version="1.1" width="32" aria-hidden="true"><path fill-rule="evenodd" d="M14.7 5.34c.13-.32.55-1.59-.13-3.31 0 0-1.05-.33-3.44 1.3-1-.28-2.07-.32-3.13-.32s-2.13.04-3.13.32c-2.39-1.64-3.44-1.3-3.44-1.3-.68 1.72-.26 2.99-.13 3.31C.49 6.21 0 7.33 0 8.69 0 13.84 3.33 15 7.98 15S16 13.84 16 8.69c0-1.36-.49-2.48-1.3-3.35zM8 14.02c-3.3 0-5.98-.15-5.98-3.35 0-.76.38-1.48 1.02-2.07 1.07-.98 2.9-.46 4.96-.46 2.07 0 3.88-.52 4.96.46.65.59 1.02 1.3 1.02 2.07 0 3.19-2.68 3.35-5.98 3.35zM5.49 9.01c-.66 0-1.2.8-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.54-1.78-1.2-1.78zm5.02 0c-.66 0-1.2.79-1.2 1.78s.54 1.79 1.2 1.79c.66 0 1.2-.8 1.2-1.79s-.53-1.78-1.2-1.78z"/></svg>
|
|
||||||
</include-fragment>
|
|
||||||
</div>
|
|
||||||
</details-menu>
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<div class="BtnGroup flex-shrink-0 d-md-none">
|
|
||||||
<a href="/ryanoasis/nerd-fonts/find/master"
|
|
||||||
class="js-pjax-capture-input btn btn-sm BtnGroup-item"
|
|
||||||
data-pjax
|
|
||||||
data-hotkey="t">
|
|
||||||
Find file
|
|
||||||
</a>
|
|
||||||
<clipboard-copy value="patched-fonts/SpaceMono/Regular/complete/Space Mono Nerd Font Complete Mono.ttf" class="btn btn-sm BtnGroup-item">
|
|
||||||
Copy path
|
|
||||||
</clipboard-copy>
|
|
||||||
</div>
|
|
||||||
</span>
|
|
||||||
<h2 id="blob-path" class="breadcrumb flex-auto min-width-0 text-normal flex-md-self-center ml-md-2 mr-md-3 my-2 my-md-0">
|
|
||||||
<span class="js-repo-root text-bold"><span class="js-path-segment"><a data-pjax="true" href="/ryanoasis/nerd-fonts"><span>nerd-fonts</span></a></span></span><span class="separator">/</span><span class="js-path-segment"><a data-pjax="true" href="/ryanoasis/nerd-fonts/tree/master/patched-fonts"><span>patched-fonts</span></a></span><span class="separator">/</span><span class="js-path-segment"><a data-pjax="true" href="/ryanoasis/nerd-fonts/tree/master/patched-fonts/SpaceMono"><span>SpaceMono</span></a></span><span class="separator">/</span><span class="js-path-segment"><a data-pjax="true" href="/ryanoasis/nerd-fonts/tree/master/patched-fonts/SpaceMono/Regular"><span>Regular</span></a></span><span class="separator">/</span><span class="js-path-segment"><a data-pjax="true" href="/ryanoasis/nerd-fonts/tree/master/patched-fonts/SpaceMono/Regular/complete"><span>complete</span></a></span><span class="separator">/</span><strong class="final-path">Space Mono Nerd Font Complete Mono.ttf</strong>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div class="BtnGroup flex-shrink-0 d-none d-md-inline-block">
|
|
||||||
<a href="/ryanoasis/nerd-fonts/find/master"
|
|
||||||
class="js-pjax-capture-input btn btn-sm BtnGroup-item"
|
|
||||||
data-pjax
|
|
||||||
data-hotkey="t">
|
|
||||||
Find file
|
|
||||||
</a>
|
|
||||||
<clipboard-copy value="patched-fonts/SpaceMono/Regular/complete/Space Mono Nerd Font Complete Mono.ttf" class="btn btn-sm BtnGroup-item">
|
|
||||||
Copy path
|
|
||||||
</clipboard-copy>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<include-fragment src="/ryanoasis/nerd-fonts/contributors/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf" class="Box Box--condensed commit-loader">
|
|
||||||
<div class="Box-body bg-blue-light f6">
|
|
||||||
Fetching contributors…
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="Box-body d-flex flex-items-center" >
|
|
||||||
<img alt="" class="loader-loading mr-2" src="https://github.githubassets.com/images/spinners/octocat-spinner-32-EAF2F5.gif" width="16" height="16" />
|
|
||||||
<span class="text-red h6 loader-error">Cannot retrieve contributors at this time</span>
|
|
||||||
</div>
|
|
||||||
</include-fragment>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="Box mt-3 position-relative">
|
|
||||||
|
|
||||||
<div class="Box-header py-2 d-flex flex-column flex-shrink-0 flex-md-row flex-md-items-center">
|
|
||||||
<div class="text-mono f6 flex-auto pr-3 flex-order-2 flex-md-order-1 mt-2 mt-md-0">
|
|
||||||
|
|
||||||
844 KB
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="d-flex py-1 py-md-0 flex-auto flex-order-1 flex-md-order-2 flex-sm-grow-0 flex-justify-between">
|
|
||||||
|
|
||||||
<div class="BtnGroup">
|
|
||||||
<a id="raw-url" class="btn btn-sm BtnGroup-item" href="/ryanoasis/nerd-fonts/raw/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf">Download</a>
|
|
||||||
<a rel="nofollow" class="btn btn-sm BtnGroup-item" href="/ryanoasis/nerd-fonts/commits/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf">History</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<a class="btn-octicon tooltipped tooltipped-nw js-remove-unless-mac-or-win"
|
|
||||||
href="https://desktop.github.com"
|
|
||||||
aria-label="Open this file in GitHub Desktop"
|
|
||||||
data-ga-click="Repository, open with desktop">
|
|
||||||
<svg class="octicon octicon-device-desktop" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M15 2H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h5.34c-.25.61-.86 1.39-2.34 2h8c-1.48-.61-2.09-1.39-2.34-2H15c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 9H1V3h14v8z"/></svg>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</option></form><form class="inline-form" action="/ryanoasis/nerd-fonts/delete/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf" accept-charset="UTF-8" method="post"><input name="utf8" type="hidden" value="✓" /><input type="hidden" name="authenticity_token" value="I3sE4gsSCzjC99lXRXdju4jOX6ph7ohP/PmExRP68Vq4hebpye4aPx4GFG0dPavQCVYsu9nkYqbRQTwnjXC0Yw==" />
|
|
||||||
<button class="btn-octicon btn-octicon-danger tooltipped tooltipped-nw" type="submit"
|
|
||||||
aria-label="You must be signed in to make or propose changes" data-disable-with>
|
|
||||||
<svg class="octicon octicon-trashcan" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"/></svg>
|
|
||||||
</button>
|
|
||||||
</form> </div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div itemprop="text" class="Box-body p-0 blob-wrapper data type-text ">
|
|
||||||
<div class="text-center p-3">
|
|
||||||
<a href="/ryanoasis/nerd-fonts/blob/master/patched-fonts/SpaceMono/Regular/complete/Space%20Mono%20Nerd%20Font%20Complete%20Mono.ttf?raw=true">View raw</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<details class="details-reset details-overlay details-overlay-dark">
|
|
||||||
<summary data-hotkey="l" aria-label="Jump to line"></summary>
|
|
||||||
<details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast linejump" aria-label="Jump to line">
|
|
||||||
</option></form><form class="js-jump-to-line-form Box-body d-flex" action="" accept-charset="UTF-8" method="get"><input name="utf8" type="hidden" value="✓" />
|
|
||||||
<input class="form-control flex-auto mr-3 linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line…" aria-label="Jump to line" autofocus>
|
|
||||||
<button type="submit" class="btn" data-close-dialog>Go</button>
|
|
||||||
</form> </details-dialog>
|
|
||||||
</details>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="footer container-lg width-full p-responsive" role="contentinfo">
|
|
||||||
<div class="position-relative d-flex flex-row-reverse flex-lg-row flex-wrap flex-lg-nowrap flex-justify-center flex-lg-justify-between pt-6 pb-2 mt-6 f6 text-gray border-top border-gray-light ">
|
|
||||||
<ul class="list-style-none d-flex flex-wrap col-12 col-lg-5 flex-justify-center flex-lg-justify-between mb-2 mb-lg-0">
|
|
||||||
<li class="mr-3 mr-lg-0">© 2020 GitHub, Inc.</li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to terms, text:terms" href="https://github.com/site/terms">Terms</a></li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to privacy, text:privacy" href="https://github.com/site/privacy">Privacy</a></li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to security, text:security" href="https://github.com/security">Security</a></li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a href="https://githubstatus.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
|
|
||||||
<li><a data-ga-click="Footer, go to help, text:help" href="https://help.github.com">Help</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<a aria-label="Homepage" title="GitHub" class="footer-octicon d-none d-lg-block mx-lg-4" href="https://github.com">
|
|
||||||
<svg height="24" class="octicon octicon-mark-github" viewBox="0 0 16 16" version="1.1" width="24" aria-hidden="true"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg>
|
|
||||||
</a>
|
|
||||||
<ul class="list-style-none d-flex flex-wrap col-12 col-lg-5 flex-justify-center flex-lg-justify-between mb-2 mb-lg-0">
|
|
||||||
<li class="mr-3 mr-lg-0"><a data-ga-click="Footer, go to contact, text:contact" href="https://github.com/contact">Contact GitHub</a></li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a href="https://github.com/pricing" data-ga-click="Footer, go to Pricing, text:Pricing">Pricing</a></li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
|
|
||||||
<li class="mr-3 mr-lg-0"><a href="https://github.blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
|
|
||||||
<li><a data-ga-click="Footer, go to about, text:about" href="https://github.com/about">About</a></li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="d-flex flex-justify-center pb-6">
|
|
||||||
<span class="f6 text-gray-light"></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="ajax-error-message" class="ajax-error-message flash flash-error">
|
|
||||||
<svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 000 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 00.01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"/></svg>
|
|
||||||
<button type="button" class="flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
|
|
||||||
<svg class="octicon octicon-x" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z"/></svg>
|
|
||||||
</button>
|
|
||||||
You can’t perform that action at this time.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="js-stale-session-flash flash flash-warn flash-banner" hidden
|
|
||||||
>
|
|
||||||
<svg class="octicon octicon-alert" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M8.893 1.5c-.183-.31-.52-.5-.887-.5s-.703.19-.886.5L.138 13.499a.98.98 0 000 1.001c.193.31.53.501.886.501h13.964c.367 0 .704-.19.877-.5a1.03 1.03 0 00.01-1.002L8.893 1.5zm.133 11.497H6.987v-2.003h2.039v2.003zm0-3.004H6.987V5.987h2.039v4.006z"/></svg>
|
|
||||||
<span class="js-stale-session-flash-signed-in" hidden>You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
|
|
||||||
<span class="js-stale-session-flash-signed-out" hidden>You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
|
|
||||||
</div>
|
|
||||||
<template id="site-details-dialog">
|
|
||||||
<details class="details-reset details-overlay details-overlay-dark lh-default text-gray-dark hx_rsm" open>
|
|
||||||
<summary role="button" aria-label="Close dialog"></summary>
|
|
||||||
<details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast hx_rsm-dialog hx_rsm-modal">
|
|
||||||
<button class="Box-btn-octicon m-0 btn-octicon position-absolute right-0 top-0" type="button" aria-label="Close dialog" data-close-dialog>
|
|
||||||
<svg class="octicon octicon-x" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48L7.48 8z"/></svg>
|
|
||||||
</button>
|
|
||||||
<div class="octocat-spinner my-6 js-details-dialog-spinner"></div>
|
|
||||||
</details-dialog>
|
|
||||||
</details>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<div class="Popover js-hovercard-content position-absolute" style="display: none; outline: none;" tabindex="0">
|
|
||||||
<div class="Popover-message Popover-message--bottom-left Popover-message--large Box box-shadow-large" style="width:360px;">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="js-notification-shelf-not-found-error" hidden></div>
|
|
||||||
|
|
||||||
<div aria-live="polite" class="js-global-screen-reader-notice sr-only"></div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
||||||
NO javascript
|
|
||||||
NO script-type
|
|
||||||
|
|
||||||
@@ -10,7 +10,6 @@
|
|||||||
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
|
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
|
||||||
|
|
||||||
set $mod Mod4
|
set $mod Mod4
|
||||||
|
|
||||||
# Font for window titles. Will also be used by the bar unless a different font
|
# Font for window titles. Will also be used by the bar unless a different font
|
||||||
# is used in the bar {} block below.
|
# is used in the bar {} block below.
|
||||||
font pango:monospace 8
|
font pango:monospace 8
|
||||||
@@ -32,11 +31,17 @@ exec --no-startup-id nm-applet
|
|||||||
|
|
||||||
# Use pactl to adjust volume in PulseAudio.
|
# Use pactl to adjust volume in PulseAudio.
|
||||||
set $refresh_i3status killall -SIGUSR1 i3status
|
set $refresh_i3status killall -SIGUSR1 i3status
|
||||||
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status
|
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +2% && $refresh_i3status
|
||||||
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status
|
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -2% && $refresh_i3status
|
||||||
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
|
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status
|
||||||
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status
|
||||||
|
|
||||||
|
#sound control
|
||||||
|
bindsym XF86AudioPlay exec playerctl play
|
||||||
|
bindsym XF86AudioPause exec playerctl pause
|
||||||
|
bindsym XF86AudioNext exec playerctl next
|
||||||
|
bindsym XF86AudioPrev exec playerctl previous
|
||||||
|
|
||||||
# Use Mouse+$mod to drag floating windows to their wanted position
|
# Use Mouse+$mod to drag floating windows to their wanted position
|
||||||
floating_modifier $mod
|
floating_modifier $mod
|
||||||
|
|
||||||
@@ -149,7 +154,7 @@ bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'Itterasshai!' -B 'Hai!' 'i3-
|
|||||||
# Border
|
# Border
|
||||||
for_window [class="^.*"] border pixel 0
|
for_window [class="^.*"] border pixel 0
|
||||||
# class border backgr. text indicator child_border
|
# class border backgr. text indicator child_border
|
||||||
client.focused #00b111 #222222 #ffffff #2e9ef4 #990000
|
client.focused #00d3a8 #222222 #ffffff #2e9ef4 #990000
|
||||||
client.focused_inactive #333333 #5f676a #ffffff #484e50 #5f676a
|
client.focused_inactive #333333 #5f676a #ffffff #484e50 #5f676a
|
||||||
client.unfocused #333333 #222222 #888888 #292d2e #222222
|
client.unfocused #333333 #222222 #888888 #292d2e #222222
|
||||||
client.urgent #2f343a #900000 #ffffff #900000 #900000
|
client.urgent #2f343a #900000 #ffffff #900000 #900000
|
||||||
@@ -227,7 +232,7 @@ bindsym $mod+Ctrl+2 move workspace to output $monitor2
|
|||||||
bindsym $mod+Shift+BackSpace exec "xlock -mode matrix -info ''"
|
bindsym $mod+Shift+BackSpace exec "xlock -mode matrix -info ''"
|
||||||
|
|
||||||
# Custom Workspaces
|
# Custom Workspaces
|
||||||
exec --no-startup-id "chromium-browser"
|
# exec --no-startup-id "chromium-browser"
|
||||||
|
|
||||||
for_window [class="Chromium"] move container to workspace 9
|
for_window [class="Chromium"] move container to workspace 9
|
||||||
|
|
||||||
@@ -243,7 +248,8 @@ bindsym $mod+Ctrl+1 move workspace to output $monitor1
|
|||||||
bindsym $mod+Ctrl+2 move workspace to output $monitor2
|
bindsym $mod+Ctrl+2 move workspace to output $monitor2
|
||||||
# i3-gaps
|
# i3-gaps
|
||||||
smart_gaps on
|
smart_gaps on
|
||||||
gaps inner 10
|
gaps inner 5
|
||||||
|
|
||||||
exec_always --no-startup-id ~/.config/polybar/start.sh &
|
exec_always --no-startup-id ~/.config/polybar/start.sh &
|
||||||
|
exec_always --no-startup-id dunst
|
||||||
{%@@ endif @@%}
|
{%@@ endif @@%}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
opacity-rule = [
|
opacity-rule = [
|
||||||
"90:class_g = 'XTerm' && !focused",
|
"90:class_g = 'XTerm' && !focused",
|
||||||
"95:class_g = 'XTerm' && focused",
|
"95:class_g = 'XTerm' && focused",
|
||||||
|
"95:class_g = 'discord'",
|
||||||
];
|
];
|
||||||
inactive-opacity = 1.0;
|
inactive-opacity = 1.0;
|
||||||
active-opacity = 1.0;
|
active-opacity = 1.0;
|
||||||
|
|||||||
@@ -3,10 +3,6 @@
|
|||||||
[colors]
|
[colors]
|
||||||
my_green = #00d3a8
|
my_green = #00d3a8
|
||||||
|
|
||||||
accent = ${self.my_green}
|
|
||||||
background = #18191E
|
|
||||||
foreground = #fff
|
|
||||||
|
|
||||||
black = #000000
|
black = #000000
|
||||||
red = #ff000f
|
red = #ff000f
|
||||||
green = #8ce10b
|
green = #8ce10b
|
||||||
@@ -16,9 +12,14 @@ magenta = #6d43a6
|
|||||||
cyan = #00d8eb
|
cyan = #00d8eb
|
||||||
white = #fff
|
white = #fff
|
||||||
|
|
||||||
|
accent = ${self.my_green}
|
||||||
|
#background = #18191E
|
||||||
|
background = #f018191E
|
||||||
|
foreground = ${self.white}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
[font]
|
[font]
|
||||||
inconsolata = "Inconsolata:pixelsize=12;0"
|
inconsolata = "Inconsolata Nerd Font Mono:pixelsize=11;0"
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
[bar/laptop]
|
[bar/laptop]
|
||||||
@@ -30,7 +31,7 @@ font-0 = ${font.inconsolata}
|
|||||||
bottom = false
|
bottom = false
|
||||||
fixed-center = true
|
fixed-center = true
|
||||||
width = 100%
|
width = 100%
|
||||||
height = 25
|
height = 27
|
||||||
|
|
||||||
#padding-left = 0.5
|
#padding-left = 0.5
|
||||||
padding-right = 1
|
padding-right = 1
|
||||||
@@ -38,12 +39,15 @@ padding-right = 1
|
|||||||
foreground = ${colors.foreground}
|
foreground = ${colors.foreground}
|
||||||
background = ${colors.background}
|
background = ${colors.background}
|
||||||
|
|
||||||
|
#border-size = 5
|
||||||
|
#border-color = ${colors.background}
|
||||||
|
|
||||||
module-margin = 1
|
module-margin = 1
|
||||||
|
|
||||||
modules-left = i3tabs
|
modules-left = i3tabs
|
||||||
modules-center = date
|
modules-center =
|
||||||
modules-right = spotify backlight network volume battery powermenu
|
modules-right = backlight volume network battery date time powermenu
|
||||||
separator =
|
separator = |
|
||||||
|
|
||||||
dim-value = 1.0
|
dim-value = 1.0
|
||||||
|
|
||||||
@@ -52,8 +56,8 @@ tray-position = right
|
|||||||
wm-name = i3
|
wm-name = i3
|
||||||
wm-restack = i3
|
wm-restack = i3
|
||||||
|
|
||||||
dpi-x = 96
|
#dpi-x = 96
|
||||||
dpi-y = 96
|
#dpi-y = 96
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
[bar/HDMI1]
|
[bar/HDMI1]
|
||||||
@@ -62,8 +66,9 @@ inherit = bar/laptop
|
|||||||
monitor = "HDMI-1"
|
monitor = "HDMI-1"
|
||||||
|
|
||||||
modules-left = i3tabs
|
modules-left = i3tabs
|
||||||
modules-center = date
|
modules-center =
|
||||||
modules-right = network volume powermenu
|
modules-right = volume network battery date time powermenu
|
||||||
|
separator = |
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
[module/i3tabs]
|
[module/i3tabs]
|
||||||
@@ -72,34 +77,36 @@ type = internal/i3
|
|||||||
pin-workspaces = true
|
pin-workspaces = true
|
||||||
index-sort = true
|
index-sort = true
|
||||||
enable-click = true
|
enable-click = true
|
||||||
enable-scroll = false
|
enable-scroll = true
|
||||||
wrapping-scroll = false
|
wrapping-scroll = false
|
||||||
|
|
||||||
format = <label-state>
|
format = <label-state> <label-mode>
|
||||||
|
|
||||||
background = #383D41
|
background_visible = #383D41
|
||||||
|
background = ${colors.background}
|
||||||
|
|
||||||
label-focused = %index%
|
label-focused = %index%
|
||||||
label-focused-foreground = ${colors.accent}
|
label-focused-foreground = ${colors.background}
|
||||||
label-focused-background = ${self.background}
|
label-focused-background = ${colors.accent}
|
||||||
label-focused-underline = ${colors.white}
|
label-focused-underline = ${colors.white}
|
||||||
label-focused-padding = 2
|
label-focused-padding = 1
|
||||||
|
|
||||||
label-unfocused = %index%
|
label-unfocused = %index%
|
||||||
label-unfocused-foreground = ${colors.white}
|
label-unfocused-foreground = ${colors.white}
|
||||||
label-unfocused-background = ${self.background}
|
label-unfocused-background = ${self.background}
|
||||||
label-unfocused-padding = 2
|
label-unfocused-padding = 1
|
||||||
|
|
||||||
label-visible = %index%
|
label-visible = %index%
|
||||||
label-visible-foreground = #ffffff
|
label-visible-foreground = #ffffff
|
||||||
label-visible-background = ${self.background}
|
label-visible-background = ${self.background}
|
||||||
label-visible-padding = 2
|
label-visible-padding = 1
|
||||||
|
|
||||||
label-urgent = %index%
|
label-urgent = %index%
|
||||||
label-urgent-foreground = ${colors.red}
|
label-urgent-foreground = ${colors.red}
|
||||||
label-urgent-background = ${self.background}
|
label-urgent-background = ${self.background}
|
||||||
label-urgent-padding = 2
|
label-urgent-padding = 1
|
||||||
|
|
||||||
|
label-mode = %mode%
|
||||||
label-mode-padding = 0
|
label-mode-padding = 0
|
||||||
label-mode-foreground = ${colors.accent}
|
label-mode-foreground = ${colors.accent}
|
||||||
label-mode-background = ${self.background}
|
label-mode-background = ${self.background}
|
||||||
@@ -110,16 +117,24 @@ type = internal/date
|
|||||||
|
|
||||||
interval = 1.0
|
interval = 1.0
|
||||||
|
|
||||||
date = %Y-%m-%d%
|
#date = %Y-%m-%d%
|
||||||
|
date = %A, %d %B %Y
|
||||||
|
|
||||||
|
label = %date%
|
||||||
|
label-font = 0
|
||||||
|
label-foreground = ${colors.white}
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
[module/time]
|
||||||
|
type = internal/date
|
||||||
|
|
||||||
|
interval = 1.0
|
||||||
|
|
||||||
time = %H:%M
|
time = %H:%M
|
||||||
|
|
||||||
date-alt = %A, %d %B %Y
|
label = %time%
|
||||||
time-alt = %H:%M:%S
|
|
||||||
|
|
||||||
label = %date% %time%
|
|
||||||
label-font = 0
|
label-font = 0
|
||||||
label-foreground = #fff
|
label-foreground = ${colors.accent}
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
[module/title]
|
[module/title]
|
||||||
@@ -161,7 +176,7 @@ headphone-soundcard = default
|
|||||||
master-mixer = Master
|
master-mixer = Master
|
||||||
|
|
||||||
format-volume = <label-volume>
|
format-volume = <label-volume>
|
||||||
format-volume-foreground = #fff
|
format-volume-foreground = ${colors.accent}
|
||||||
label-volume = VOL %percentage%%
|
label-volume = VOL %percentage%%
|
||||||
|
|
||||||
format-muted <label-muted>
|
format-muted <label-muted>
|
||||||
@@ -180,7 +195,7 @@ format-disconnectded = <label-disconnected>
|
|||||||
label-connected = %essid%
|
label-connected = %essid%
|
||||||
label-connected-foreground = #fff
|
label-connected-foreground = #fff
|
||||||
|
|
||||||
label-disconnected =
|
label-disconnected = NO WIFI
|
||||||
label-disconnected-foreground = #fff
|
label-disconnected-foreground = #fff
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
@@ -190,9 +205,10 @@ type = internal/backlight
|
|||||||
card = amdgpu_bl0
|
card = amdgpu_bl0
|
||||||
enable-scroll = true
|
enable-scroll = true
|
||||||
|
|
||||||
format = <bar>
|
format = <label>
|
||||||
format-foreground = #fff
|
format-foreground = ${colors.white}
|
||||||
label = BRIGHT %percentage%%
|
|
||||||
|
label = BRT %percentage%%
|
||||||
|
|
||||||
bar-width = 10
|
bar-width = 10
|
||||||
bar-indicator = |
|
bar-indicator = |
|
||||||
|
|||||||
Reference in New Issue
Block a user