summaryrefslogtreecommitdiffstats
path: root/x11-misc
diff options
context:
space:
mode:
authorturret <turret@duck.com>2026-01-16 18:33:51 -0600
committerturret <turret@duck.com>2026-01-16 18:33:51 -0600
commitf6e8612c574a1fd349b9df05cc527f6c9a760574 (patch)
treebc1ab0412e1d3301193dea06ca16569f6cf65249 /x11-misc
parentb874d76c7b11e16ee99c555c48806a78c4b993d9 (diff)
downloadportage-savedconfig-master.tar.gz
portage-savedconfig-master.tar.bz2
portage-savedconfig-master.zip
update 2026HEADmaster
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/dmenu-5.023
-rw-r--r--x11-misc/sent-1-r156
-rw-r--r--x11-misc/slock-1.4-r112
3 files changed, 0 insertions, 91 deletions
diff --git a/x11-misc/dmenu-5.0 b/x11-misc/dmenu-5.0
deleted file mode 100644
index 1edb647..0000000
--- a/x11-misc/dmenu-5.0
+++ /dev/null
@@ -1,23 +0,0 @@
-/* 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 */
-/* -fn option overrides fonts[0]; default X11 font or font set */
-static const char *fonts[] = {
- "monospace:size=10"
-};
-static const char *prompt = NULL; /* -p option; prompt to the left of input field */
-static const char *colors[SchemeLast][2] = {
- /* fg bg */
- [SchemeNorm] = { "#bbbbbb", "#222222" },
- [SchemeSel] = { "#eeeeee", "#005577" },
- [SchemeOut] = { "#000000", "#00ffff" },
-};
-/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
-static unsigned int lines = 0;
-
-/*
- * Characters not considered part of a word while deleting words
- * for example: " /?\"&[]"
- */
-static const char worddelimiters[] = " ";
diff --git a/x11-misc/sent-1-r1 b/x11-misc/sent-1-r1
deleted file mode 100644
index 60eb376..0000000
--- a/x11-misc/sent-1-r1
+++ /dev/null
@@ -1,56 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-static char *fontfallbacks[] = {
- "dejavu sans",
- "roboto",
- "ubuntu",
-};
-#define NUMFONTSCALES 42
-#define FONTSZ(x) ((int)(10.0 * powf(1.1288, (x)))) /* x in [0, NUMFONTSCALES-1] */
-
-static const char *colors[] = {
- "#000000", /* foreground color */
- "#FFFFFF", /* background color */
-};
-
-static const float linespacing = 1.4;
-
-/* how much screen estate is to be used at max for the content */
-static const float usablewidth = 0.75;
-static const float usableheight = 0.75;
-
-static Mousekey mshortcuts[] = {
- /* button function argument */
- { Button1, advance, {.i = +1} },
- { Button3, advance, {.i = -1} },
- { Button4, advance, {.i = -1} },
- { Button5, advance, {.i = +1} },
-};
-
-static Shortcut shortcuts[] = {
- /* keysym function argument */
- { XK_Escape, quit, {0} },
- { XK_q, quit, {0} },
- { XK_Right, advance, {.i = +1} },
- { XK_Left, advance, {.i = -1} },
- { XK_Return, advance, {.i = +1} },
- { XK_space, advance, {.i = +1} },
- { XK_BackSpace, advance, {.i = -1} },
- { XK_l, advance, {.i = +1} },
- { XK_h, advance, {.i = -1} },
- { XK_j, advance, {.i = +1} },
- { XK_k, advance, {.i = -1} },
- { XK_Down, advance, {.i = +1} },
- { XK_Up, advance, {.i = -1} },
- { XK_Next, advance, {.i = +1} },
- { XK_Prior, advance, {.i = -1} },
- { XK_n, advance, {.i = +1} },
- { XK_p, advance, {.i = -1} },
- { XK_r, reload, {0} },
-};
-
-static Filter filters[] = {
- { "\\.ff$", "cat" },
- { "\\.ff.bz2$", "bunzip2" },
- { "\\.[a-z0-9]+$", "2ff" },
-};
diff --git a/x11-misc/slock-1.4-r1 b/x11-misc/slock-1.4-r1
deleted file mode 100644
index 9855e21..0000000
--- a/x11-misc/slock-1.4-r1
+++ /dev/null
@@ -1,12 +0,0 @@
-/* user and group to drop privileges to */
-static const char *user = "nobody";
-static const char *group = "nogroup";
-
-static const char *colorname[NUMCOLS] = {
- [INIT] = "black", /* after initialization */
- [INPUT] = "#005577", /* during input */
- [FAILED] = "#CC3333", /* wrong password */
-};
-
-/* treat a cleared input like a wrong password (color) */
-static const int failonclear = 1;