From: Georgios Atheridis Date: Sat, 11 Feb 2023 02:12:47 +0000 (+0000) Subject: Apply personal config X-Git-Url: https://git.atheridis.org/?a=commitdiff_plain;h=bb2bb2469c309e65c0cbf90803502a833008b5ee;p=suckless%2Fst.git Apply personal config Change font Fira Mono and default shell to bash --- diff --git a/config.def.h b/config.def.h index 91ab8ca..e5afb13 100644 --- a/config.def.h +++ b/config.def.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; +static char *font = "Fira Mono:style=Medium:pixelsize=13:scalable=true:antialias=true:autohint=true"; static int borderpx = 2; /* @@ -16,7 +16,7 @@ static int borderpx = 2; * 4: value of shell in /etc/passwd * 5: value of shell in config.h */ -static char *shell = "/bin/sh"; +static char *shell = "/bin/bash"; char *utmp = NULL; /* scroll program: to enable use a string like "scroll" */ char *scroll = NULL; @@ -95,33 +95,32 @@ unsigned int tabspaces = 8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { - /* 8 normal colors */ - "black", - "red3", - "green3", - "yellow3", - "blue2", - "magenta3", - "cyan3", - "gray90", - - /* 8 bright colors */ - "gray50", - "red", - "green", - "yellow", - "#5c5cff", - "magenta", - "cyan", - "white", + + /* 8 normal colors 8*/ + "#15161E", + "#a7566e", + "#5e9e3a", + "#a07f48", + "#4a6aa7", + "#8b6aa7", + "#4d8faf", + "#99a1c6", + + /* 8 bright colors */ + "#414868", + "#f7768e", + "#9ece6a", + "#e0af68", + "#7aa2f7", + "#bb9af7", + "#7dcfff", + "#c0caf5", [255] = 0, /* more colors can be added after 255 to use with DefaultXX */ - "#cccccc", - "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ + "#c0caf5", /* default foreground colour */ + "#1a1b26", /* default background colour */ }; @@ -129,8 +128,8 @@ static const char *colorname[] = { * Default colors (colorname index) * foreground, background, cursor, reverse cursor */ -unsigned int defaultfg = 258; -unsigned int defaultbg = 259; +unsigned int defaultfg = 256; +unsigned int defaultbg = 257; unsigned int defaultcs = 256; static unsigned int defaultrcs = 257;