Skip to content

Commit

Permalink
Change to font OpenDyslexic Mono for main programs
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilioPeJu committed Aug 31, 2020
1 parent b4e196a commit cd546d2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .config/sway/config
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ input type:keyboard {
input "1386:891:Wacom_One_by_Wacom_M_Pen" map_to_output HDMI-A-1
# You can get the names of your inputs by running: swaymsg -t get_inputs
# Read `man 5 sway-input` for more information about this section.
#
# Fonts
font pango: OpenDyslexicMono Regular 10

### Key bindings
#
Expand Down
Binary file added .local/share/fonts/OpenDyslexicMono-Regular.otf
Binary file not shown.
2 changes: 1 addition & 1 deletion suckless/dmenu/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"monospace:size=10"
"OpenDyslexicMono:size=10"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
Expand Down
4 changes: 2 additions & 2 deletions suckless/dwm/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "terminus:size=12" };
static const char dmenufont[] = "monospace:size=12";
static const char *fonts[] = { "OpenDyslexicMono:size=10" };
static const char dmenufont[] = "OpenDyslexicMono:size=10";
static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444";
static const char col_gray3[] = "#bbbbbb";
Expand Down
2 changes: 1 addition & 1 deletion suckless/st/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "mono:pixelsize=16:antialias=true:autohint=true";
static char *font = "OpenDyslexicMono:size=12";
static int borderpx = 2;
float alpha = 0.8;

Expand Down

0 comments on commit cd546d2

Please sign in to comment.