Use fish as default user shell

This commit is contained in:
2026-01-15 16:32:36 +01:00
parent 704a33a1ad
commit d1c14a1717
2 changed files with 479 additions and 5 deletions
+5 -5
View File
@@ -5,8 +5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
static int borderpx = 2;
static char *font = "FiraCodeNerdFont:size=10:antialias=true:autohint=true";
static int borderpx = 5;
/*
* What program is execed by st depends of these precedence rules:
@@ -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/fish";
char *utmp = NULL;
/* scroll program: to enable use a string like "scroll" */
char *scroll = NULL;
@@ -120,8 +120,8 @@ static const char *colorname[] = {
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
"gray90", /* default foreground colour */
"black", /* default background colour */
"#cdd6f4", /* default foreground colour */
"#1e1e2e", /* default background colour */
};