numerous changes
This commit is contained in:
parent
c3212e8624
commit
e1b4f73d4a
3 changed files with 81 additions and 19 deletions
23
config.h
23
config.h
|
|
@ -6,22 +6,22 @@
|
|||
/* appearance */
|
||||
static const int sloppyfocus = 1; /* focus follows mouse */
|
||||
static const int bypass_surface_visibility = 0; /* 1 means idle inhibitors will disable idle tracking even if it's surface isn't visible */
|
||||
static const int smartgaps = 0; /* 1 means no outer gap when there is only one window */
|
||||
static const int smartgaps = 1; /* 1 means no outer gap when there is only one window */
|
||||
static int gaps = 1; /* 1 means gaps between windows are added */
|
||||
static const unsigned int gappx = 10; /* gap pixel between windows */
|
||||
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||
static const unsigned int gappx = 25; /* gap pixel between windows */
|
||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
||||
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 float rootcolor[] = COLOR(0x000000ff);
|
||||
static const float unfocuseddim[] = COLOR(0x00000088);
|
||||
static const char *fonts[] = {"Inconsolata Nerd Font:size=11"};
|
||||
static const float rootcolor[] = COLOR(0xcdd6f4ff);
|
||||
static const float unfocuseddim[] = COLOR(0x00000077);
|
||||
/* This conforms to the xdg-protocol. Set the alpha to zero to restore the old behavior */
|
||||
static const float fullscreen_bg[] = {0.0f, 0.0f, 0.0f, 1.0f}; /* You can also use glsl colors */
|
||||
static uint32_t colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { 0xbbbbbbff, 0x222222ff, 0x444444ff },
|
||||
[SchemeSel] = { 0xeeeeeeff, 0x005577ff, 0x005577ff },
|
||||
[SchemeUrg] = { 0, 0, 0x770000ff },
|
||||
[SchemeNorm] = { 0xcdd6f4ff, 0x1e1e2eff, 0x1e1e2eff },
|
||||
[SchemeSel] = { 0x11111bff, 0xb4befeff, 0xb4befeff },
|
||||
[SchemeUrg] = { 0, 0, 0xfe8ba8ff },
|
||||
};
|
||||
|
||||
/* tagging */
|
||||
|
|
@ -32,7 +32,8 @@ static int log_level = WLR_ERROR;
|
|||
|
||||
/* Autostart */
|
||||
static const char *const autostart[] = {
|
||||
"wbg", "/path/to/your/image", NULL,
|
||||
"wbg", "/home/xory/wallpaper.png", NULL,
|
||||
"dunst", NULL,
|
||||
NULL /* terminate */
|
||||
};
|
||||
|
||||
|
|
@ -135,7 +136,7 @@ static const int cursor_timeout = 5;
|
|||
|
||||
/* commands */
|
||||
static const char *termcmd[] = { "kitty", NULL };
|
||||
static const char *menucmd[] = { "rofi", "-show", "drun", NULL };
|
||||
static const char *menucmd[] = { "wofi", "--conf", "/home/xory/.config/wofi/config/config", "--style", "/home/xory/.config/wofi/src/mocha/style.css", "-show", "drun", NULL };
|
||||
|
||||
static const Key keys[] = {
|
||||
/* Note that Shift changes certain key codes: 2 -> at, etc. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue