This commit is contained in:
coast 2025-07-30 07:45:48 +03:30
parent f8ea924d41
commit b2cc8b4367
10 changed files with 10 additions and 9 deletions

View file

@ -109,6 +109,7 @@ Plug 'norcalli/nvim-colorizer.lua'
Plug 'nvim-treesitter/nvim-treesitter-textobjects'
Plug 'nvim-treesitter/nvim-treesitter-refactor'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'Stoozy/vimcord'
call plug#end()
lua << EOF

View file

@ -4,13 +4,13 @@
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int snap = 0; /* snap pixel */
static const int swallowfloating = 1; /* 1 means swallow floating windows by default */
static const unsigned int gappih = 10; /* horiz inner gap between windows */
static const unsigned int gappiv = 10; /* vert inner gap between windows */
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 30; /* vert outer gap between windows and screen edge */
static const unsigned int gappih = 8; /* horiz inner gap between windows */
static const unsigned int gappiv = 8; /* vert inner gap between windows */
static const unsigned int gappoh = 8; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 8; /* vert outer gap between windows and screen edge */
static const int smartgaps_fact = 1; /* gap factor when there is only one client; 0 = no gaps, 3 = 3x outer gaps */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const int topbar = 0; /* 0 means bottom bar */
/* Status is to be shown on: -1 (all monitors), 0 (a specific monitor by index), 'A' (active monitor) */
static const int statusmon = 'A';
@ -18,8 +18,8 @@ static const int statusmon = 'A';
static int tagindicatortype = INDICATOR_NONE;
static int tiledindicatortype = INDICATOR_NONE;
static int floatindicatortype = INDICATOR_NONE;
static const char *fonts[] = { "monospace:size=12" };
static const char dmenufont[] = "monospace:size=12";
static const char *fonts[] = { "Terminus:size=15" };
static const char dmenufont[] = "Terminus:size=15";
static char c000000[] = "#000000";

BIN
dwm/dwm

Binary file not shown.

BIN
dwm/dwm.o

Binary file not shown.

View file

@ -70,5 +70,5 @@ static const struct arg args[] = {
{temp, "[tmp %s°C] ", "/sys/class/thermal/thermal_zone3/temp"},
{run_command, "[mem %s]", "sb-memory"},
{run_command, " [bat %s] ", "sb-battery"},
{run_command, "[%s]", "date '+%a %I:%M %P'"},
{run_command, "[%s]", "date '+%I:%M %P'"},
};

Binary file not shown.

Binary file not shown.

View file

@ -1,4 +1,4 @@
static char *font = "Inconsolata:size=13:antialias=true:autohint=true";
static char *font = "Terminus:size=20:antialias=true:autohint=true";
static int borderpx = 2;
static char *shell = "/bin/sh";

BIN
st/st

Binary file not shown.

BIN
st/x.o

Binary file not shown.