Apply personal config master
authorGeorgios Atheridis <georgios@atheridis.org>
Sat, 11 Feb 2023 02:12:47 +0000 (02:12 +0000)
committerGeorgios Atheridis <georgios@atheridis.org>
Sat, 11 Feb 2023 02:12:47 +0000 (02:12 +0000)
Change font Fira Mono and default shell to bash

config.def.h

index 91ab8cab2c709e9f235c0892d4c48c83f2bdc5dc..e5afb1375c08c02f6ea10a2f03fe2a262d27b609 100644 (file)
@@ -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;