Skip to content

Instantly share code, notes, and snippets.

View lwertzui's full-sized avatar

Wertzui lwertzui

  • 23:29 (UTC +01:00)
View GitHub Profile
@lwertzui
lwertzui / config.ini
Created October 24, 2025 09:31
my ly conf
# Ly supports 24-bit true color with styling, which means each color is a 32-bit value.
# The format is 0xSSRRGGBB, where SS is the styling, RR is red, GG is green, and BB is blue.
# Here are the possible styling options:
#define TB_BOLD 0x01000000
#define TB_UNDERLINE 0x02000000
#define TB_REVERSE 0x04000000
#define TB_ITALIC 0x08000000
#define TB_BLINK 0x10000000
#define TB_HI_BLACK 0x20000000
#define TB_BRIGHT 0x40000000
@lwertzui
lwertzui / dwmstatus.c
Created October 24, 2025 09:10
my dwmstatus config, not patched for fbsd yet
/*
* Copy me if you can.
* by 20h
*/
#define _BSD_SOURCE
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
@lwertzui
lwertzui / conky-left.conf
Created October 22, 2025 10:28
conky config and service file
conky.config = {
update_interval = 1.0,
double_buffer = true,
use_xft = true,
font = 'Terminus:style=Regular:pixelsize=12',
override_utf8_locale = true,
default_color = '#cccccc',
own_window_class = 'Conky',
own_window = false,
own_window_type = 'desktop',
@lwertzui
lwertzui / config.h
Created October 22, 2025 09:51
simple dwm config, no major patches applied
/* See LICENSE file for copyright and license details. */
/* appearance */
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
static const char *colors[][3] = {