added hide_vacant_tags patch
This commit is contained in:
parent
0620b27469
commit
b14bbd00d4
4 changed files with 3752 additions and 23 deletions
32
config.h
32
config.h
|
@ -10,8 +10,8 @@ static const unsigned int gappih = 4; /* horiz inner gap between windo
|
|||
static const unsigned int gappiv = 4; /* vert inner gap between windows */
|
||||
static const unsigned int gappoh = 1; /* horiz outer gap between windows and screen edge */
|
||||
static const unsigned int gappov = 1; /* vert outer gap between windows and screen edge */
|
||||
static const char *cursor_theme = "Adwaita";
|
||||
static const char cursor_size[] = "24"; /* Make sure it's a valid integer, otherwise things will break */
|
||||
static const char *cursor_theme = "macOS";
|
||||
static const char cursor_size[] = "28"; /* Make sure it's a valid integer, otherwise things will break */
|
||||
static const int user_bh = 30; /* 0 means that dwl will calculate barheight, >= 1 means dwl will use user_bh as the bar height. */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
|
@ -35,7 +35,7 @@ static const Env envs[] = {
|
|||
|
||||
/* Autostart */
|
||||
static const char *const autostart[] = {
|
||||
"wbg", "/home/amolinae/Pictures/Wallpapers/highsierra-grey.jpg", NULL,
|
||||
"wbg", WALLPAPER, NULL,
|
||||
"foot", "--server", NULL,
|
||||
"swayidle", NULL,
|
||||
"mako", NULL,
|
||||
|
@ -146,12 +146,13 @@ static const enum libinput_config_tap_button_map button_map = LIBINPUT_CONFIG_TA
|
|||
|
||||
/* commands */
|
||||
static const char *termcmd[] = { "footclient", NULL }; // Terminal
|
||||
static const char *menucmd[] = { "tofi-drun", NULL }; // Application launcher
|
||||
static const char *fmgrcmd[] = { "footclient", "lf", NULL }; // File manager
|
||||
static const char *sptfcmd[] = { "footclient", "spotify_player", NULL}; // Spotify client
|
||||
static const char *lockcmd[] = { "swaylock", NULL }; // Launch swaylock
|
||||
static const char *pwmncmd[] = { "powermenu", NULL }; // Launch powermenu
|
||||
static const char *emojcmd[] = { "tofiunicode",NULL }; // Launch emoji menu
|
||||
static const char *menucmd[] = { "tofi-drun", NULL }; // Application launcher
|
||||
static const char *fmgrcmd[] = { "footclient", "--title", "lf", "lf", NULL }; // File manager
|
||||
static const char *sptfcmd[] = { "footclient", "--title", "Spotify", "spotify_player", NULL }; // Spotify client
|
||||
static const char *ncmxcmd[] = { "footclient", "--title", "ncpamixer", "ncpamixer", NULL }; // Volume control
|
||||
static const char *lockcmd[] = { "swaylock", NULL }; // Launch swaylock
|
||||
static const char *pwmncmd[] = { "powermenu", NULL }; // Launch powermenu
|
||||
static const char *emojcmd[] = { "tofiunicode", NULL }; // Launch emoji menu
|
||||
|
||||
static const Key keys[] = {
|
||||
/* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */
|
||||
|
@ -160,10 +161,11 @@ static const Key keys[] = {
|
|||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd} },
|
||||
{ MODKEY, XKB_KEY_e, spawn, {.v = fmgrcmd} },
|
||||
{ MODKEY, XKB_KEY_s, spawn, {.v = sptfcmd} },
|
||||
{ MODKEY, XKB_KEY_v, spawn, {.v = ncmxcmd} },
|
||||
{ MODKEY, XKB_KEY_l, spawn, {.v = lockcmd} },
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_E, spawn, {.v = emojcmd} },
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Q, spawn, {.v = pwmncmd} },
|
||||
{ 0, XKB_KEY_XF86AudioMicMute, spawn,SHCMD("setvol -m mute") },
|
||||
{ 0, XKB_KEY_XF86AudioMicMute, spawn,SHCMD("setvol -m mute") },
|
||||
{ WLR_MODIFIER_SHIFT, XKB_KEY_XF86AudioLowerVolume, spawn,SHCMD("setvol -m down") },
|
||||
{ WLR_MODIFIER_SHIFT, XKB_KEY_XF86AudioRaiseVolume, spawn,SHCMD("setvol -m up") },
|
||||
{ 0, XKB_KEY_XF86AudioMute, spawn,SHCMD("setvol mute") },
|
||||
|
@ -219,14 +221,14 @@ static const Key keys[] = {
|
|||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_colon, tagmon, {.i = WLR_DIRECTION_RIGHT} },
|
||||
*/
|
||||
TAGKEYS( XKB_KEY_1, XKB_KEY_exclam, 0),
|
||||
TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1),
|
||||
TAGKEYS( XKB_KEY_2, XKB_KEY_quotedbl, 1),
|
||||
TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2),
|
||||
TAGKEYS( XKB_KEY_4, XKB_KEY_dollar, 3),
|
||||
TAGKEYS( XKB_KEY_5, XKB_KEY_percent, 4),
|
||||
TAGKEYS( XKB_KEY_6, XKB_KEY_asciicircum, 5),
|
||||
TAGKEYS( XKB_KEY_7, XKB_KEY_ampersand, 6),
|
||||
TAGKEYS( XKB_KEY_8, XKB_KEY_asterisk, 7),
|
||||
TAGKEYS( XKB_KEY_9, XKB_KEY_parenleft, 8),
|
||||
TAGKEYS( XKB_KEY_6, XKB_KEY_ampersand, 5),
|
||||
TAGKEYS( XKB_KEY_7, XKB_KEY_slash, 6),
|
||||
TAGKEYS( XKB_KEY_8, XKB_KEY_parenleft, 7),
|
||||
TAGKEYS( XKB_KEY_9, XKB_KEY_parenright, 8),
|
||||
/*
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Q, quit, {0} },
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue