Compare commits
1 commit
master
...
patch/spli
Author | SHA1 | Date | |
---|---|---|---|
020235fb41 |
2 changed files with 2100 additions and 2116 deletions
790
src/archy_dwm.c
790
src/archy_dwm.c
File diff suppressed because it is too large
Load diff
|
@ -16,13 +16,20 @@
|
|||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||
static const unsigned int gappx = 3; /* gaps size between windows */
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
|
||||
static const unsigned int systrayonleft = -1; /* 0: systray in the right corner, >0: systray on left of status text */
|
||||
static const unsigned int systraypinning =
|
||||
0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor
|
||||
X */
|
||||
static const unsigned int systrayonleft =
|
||||
-1; /* 0: systray in the right corner, >0: systray on left of status text */
|
||||
static const unsigned int systrayspacing = 2; /* systray spacing */
|
||||
static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
|
||||
static const int systraypinningfailfirst =
|
||||
1; /* 1: if pinning fails, display systray on the first monitor, False:
|
||||
display systray on the last monitor*/
|
||||
static const int showsystray = 1; /* 0 means no systray */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 0; /* 0 means bottom bar */
|
||||
static const int splitstatus = 1; /* 1 for split status items */
|
||||
static const char *splitdelim = ";"; /* Character used for separating status */
|
||||
static const char *fonts[] = {
|
||||
"monospace:size=6", "Noto Color Emoji:size=7",
|
||||
"Nerd Font Mono:size=10:antialias=true:hinting=true"};
|
||||
|
@ -51,14 +58,15 @@ static const char *colors[][3] = {
|
|||
// Autostart programs
|
||||
static const char *const autostart[] = {
|
||||
// Start my build of slstatus
|
||||
"archy-slstatus", NULL,
|
||||
NULL /* terminate */
|
||||
"archy-slstatus", NULL, NULL /* terminate */
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
// static const char *tags[] = { "I", "II", "III", "IV", "V", "VI", "VII", "VIII", "IX" };
|
||||
// static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
|
||||
static const char *tags[] = {"www", "dev", "sys", "chat", "lab", "vid", "mus", "vbox", "gfx", ";"};
|
||||
// static const char *tags[] = { "I", "II", "III", "IV", "V", "VI", "VII",
|
||||
// "VIII", "IX" }; static const char *tags[] = { "", "", "", "",
|
||||
// "", "", "", "", "" };
|
||||
static const char *tags[] = {"www", "dev", "sys", "chat", "lab",
|
||||
"vid", "mus", "vbox", "gfx", ";"};
|
||||
|
||||
static const Rule rules[] = {
|
||||
/* xprop(1):
|
||||
|
@ -71,12 +79,16 @@ static const Rule rules[] = {
|
|||
*/
|
||||
/* class instance title tags mask isfloating monitor */
|
||||
{"Gimp", NULL, NULL, 9 << 8, 1, -1}, // 0100000000 (gfx tag)
|
||||
{"Tor Browser", "Navigator", NULL, 9 << 9, 0,-1}, // Open it in tag 10 (9 in array) (; tag)
|
||||
{"Tor Browser", "Navigator", NULL, 9 << 9, 0,
|
||||
-1}, // Open it in tag 10 (9 in array) (; tag)
|
||||
{"KeePassXC", "keepassxc", NULL, 9 << 9, 0, -1}, // 1000000000 (; tag)
|
||||
{"firefoxdeveloperedition", "Navigator", NULL, 1 << 0, 0,-1}, // 0000000001 (www tag)
|
||||
{"firefoxdeveloperedition", "Navigator", NULL, 1 << 0, 0,
|
||||
-1}, // 0000000001 (www tag)
|
||||
//{"discord", NULL, NULL, 4 << 1, 0, -1}, // 0000001000 (chat tag)
|
||||
{"Virt-manager", "virt-manager", NULL, 9 << 7, 0,-1}, // 0010000000 (vbox tag)
|
||||
{"VirtualBox Manager", "VirtualBox Manager", NULL, 9 << 7, 0,1}, // 0010000000 (vbox tag)
|
||||
{"Virt-manager", "virt-manager", NULL, 9 << 7, 0,
|
||||
-1}, // 0010000000 (vbox tag)
|
||||
{"VirtualBox Manager", "VirtualBox Manager", NULL, 9 << 7, 0,
|
||||
1}, // 0010000000 (vbox tag)
|
||||
{NULL, "open.spotify.com", NULL, 8 << 3, 0, -1}, // 0001000000 (mus tag)
|
||||
{"cmus", NULL, NULL, 8 << 3, 0, -1}, // 0001000000 (mus tag)
|
||||
{"jetbrains-clion", NULL, NULL, 1 << 1, 0, -1}, // 0000000010 (dev tag)
|
||||
|
@ -94,7 +106,9 @@ static const Rule rules[] = {
|
|||
/* layout(s) */
|
||||
static const float mfact = 0.60f; /* factor of master area size [0.05..0.95] */
|
||||
static const int nmaster = 1; /* number of clients in master area */
|
||||
static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */
|
||||
static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */
|
||||
static const int resizehints =
|
||||
1; /* 1 means respect size hints in tiled resizals */
|
||||
static const int lockfullscreen =
|
||||
1; /* 1 will force focus on the fullscreen window */
|
||||
|
||||
#endif // CONFIG_H
|
||||
|
|
Loading…
Reference in a new issue