suicide
This commit is contained in:
parent
9002eb1585
commit
3c19ac966c
15 changed files with 16 additions and 13 deletions
|
@ -1,19 +1,19 @@
|
||||||
/* See LICENSE file for copyright and license details. */
|
/* See LICENSE file for copyright and license details. */
|
||||||
/* Default settings; can be overriden by command line. */
|
/* Default settings; can be overriden by command line. */
|
||||||
|
|
||||||
static int topbar = 0; /* -b option; if 0, dmenu appears at bottom */
|
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
||||||
/* -fn option overrides fonts[0]; default X11 font or font set */
|
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||||||
static const int user_bh = 0; /* add an defined amount of pixels to the bar height */
|
static const int user_bh = 0; /* add an defined amount of pixels to the bar height */
|
||||||
|
|
||||||
static const char *fonts[] = {
|
static const char *fonts[] = {
|
||||||
"monospace:size=10"
|
"Departure Mono:size=13"
|
||||||
};
|
};
|
||||||
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||||
static const char *colors[SchemeLast][2] = {
|
static const char *colors[SchemeLast][2] = {
|
||||||
/* fg bg */
|
/* fg bg */
|
||||||
[SchemeNorm] = { "#bbbbbb", "#222222" },
|
[SchemeNorm] = { "#cccccc", "#000000" }, // normal: grey text on black
|
||||||
[SchemeSel] = { "#eeeeee", "#005577" },
|
[SchemeSel] = { "#000000", "#ffffff" }, // selected: black text on white
|
||||||
[SchemeOut] = { "#000000", "#00ffff" },
|
[SchemeOut] = { "#000000", "#00ffff" }, // optional: match previous Out
|
||||||
};
|
};
|
||||||
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||||
static unsigned int lines = 0;
|
static unsigned int lines = 0;
|
||||||
|
|
BIN
dmenu/dmenu
BIN
dmenu/dmenu
Binary file not shown.
BIN
dmenu/dmenu.o
BIN
dmenu/dmenu.o
Binary file not shown.
|
@ -18,8 +18,8 @@ static const int statusmon = 'A';
|
||||||
static int tagindicatortype = INDICATOR_NONE;
|
static int tagindicatortype = INDICATOR_NONE;
|
||||||
static int tiledindicatortype = INDICATOR_NONE;
|
static int tiledindicatortype = INDICATOR_NONE;
|
||||||
static int floatindicatortype = INDICATOR_NONE;
|
static int floatindicatortype = INDICATOR_NONE;
|
||||||
static const char *fonts[] = { "Terminus:size=15" };
|
static const char *fonts[] = { "monospace:size=15" };
|
||||||
static const char dmenufont[] = "Terminus:size=15";
|
static const char dmenufont[] = "monospace:size=15";
|
||||||
|
|
||||||
static char c000000[] = "#000000";
|
static char c000000[] = "#000000";
|
||||||
|
|
||||||
|
|
BIN
dwm/drw.o
BIN
dwm/drw.o
Binary file not shown.
BIN
dwm/dwm
BIN
dwm/dwm
Binary file not shown.
BIN
dwm/dwm.o
BIN
dwm/dwm.o
Binary file not shown.
BIN
dwm/util.o
BIN
dwm/util.o
Binary file not shown.
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/zsh
|
|
||||||
echo "musl libc (x86_64)"
|
|
||||||
echo "Version 1.2.5"
|
|
||||||
echo "Dynamic Program Loader"
|
|
||||||
echo "Usage: ldd [options [--] pathname]"
|
|
8
local/bin/stacki3
Executable file
8
local/bin/stacki3
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/python3.13
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
if __name__ == '__main__':
|
||||||
|
from stacki3 import main
|
||||||
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
||||||
|
sys.exit(main())
|
|
@ -1,4 +1,4 @@
|
||||||
static char *font = "Terminus:size=20:antialias=true:autohint=true";
|
static char *font = "monospace:size=20:antialias=true:autohint=true";
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
static char *shell = "/bin/sh";
|
static char *shell = "/bin/sh";
|
||||||
|
|
BIN
st/hb.o
BIN
st/hb.o
Binary file not shown.
BIN
st/st
BIN
st/st
Binary file not shown.
BIN
st/st.o
BIN
st/st.o
Binary file not shown.
BIN
st/x.o
BIN
st/x.o
Binary file not shown.
Loading…
Add table
Reference in a new issue