linux-qubasis

linux oasis port as a qubes template

git clone https://9o.is/git/linux-qubasis.git

commit 8ba1a07e79ef671e7f59d8820f3c41e7ee4e74a0
parent 9fae54ff52e78bb0dc533597e8290d004a11e574
Author: Jul <jul@9o.is>
Date:   Tue, 15 Jul 2025 13:10:35 -0400

configure st styling

Diffstat:
Mpkg/st/config.h | 56++++++++++++++++++++++++++------------------------------
1 file changed, 26 insertions(+), 30 deletions(-)

diff --git a/pkg/st/config.h b/pkg/st/config.h @@ -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 = "Fira Mono:size=12:antialias=true:autohint=true"; +static int borderpx = 10; /* * What program is execed by st depends of these precedence rules: @@ -95,33 +95,29 @@ 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", - - [255] = 0, - - /* more colors can be added after 255 to use with DefaultXX */ - "#cccccc", - "#555555", - "gray90", /* default foreground colour */ - "black", /* default background colour */ + "#313244", + "#f38ba8", + "#a6e3a1", + "#f9e2af", + "#89b4fa", + "#b4befe", + "#94e2d5", + "#a6adc8", + "#6c7086", + "#f38ba8", + "#a6e3a1", + "#f9e2af", + "#89b4fa", + "#b4befe", + "#94e2d5", + "#cdd6f4", + [255] = 0, + + /* more colors can be added after 255 to use with DefaultXX */ + "#f5e0dc", /* default cursor color */ + "#f5e0dc", /* default reverse cursor color */ + "#cdd6f4", /* default foreground color */ + "#181825", /* default background color */ }; @@ -153,7 +149,7 @@ static unsigned int rows = 24; /* * Default colour and shape of the mouse cursor */ -static unsigned int mouseshape = XC_xterm; +static unsigned int mouseshape = XC_left_ptr; static unsigned int mousefg = 7; static unsigned int mousebg = 0;