dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

Commit: 0e05026ed5659149cd221d7d003d4d02ed946e81
Parent: 418cff1693bf9a850d0394ef586ebc72b7c1e249
Author: Randy Palamar
Date:   Wed,  1 Sep 2021 15:24:10 -0600

bump dmenu config

Diffstat:
M.config/sys/etc/portage/savedconfig/x11-misc/dmenu-9999 | 10++++++----
1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/.config/sys/etc/portage/savedconfig/x11-misc/dmenu-9999 b/.config/sys/etc/portage/savedconfig/x11-misc/dmenu-9999 @@ -1,16 +1,18 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +static const int padbar = 8; /* adjusts the bars padding */ +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=12" + "Go Mono:style=bold:size=14", + "あんずもじ:style=Regular:size=18", }; static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#cccaca", "#1b1b1b", }, - [SchemeSel] = { "#e65080", "#1b1b1b" }, + [SchemeNorm] = { "#666666", "#090909", }, + [SchemeSel] = { "#a274f2", "#090909" }, [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */