Updated
This commit is contained in:
parent
edc7177239
commit
0aadcb22e7
4 changed files with 1852 additions and 6 deletions
|
@ -358,7 +358,7 @@ env:
|
||||||
|
|
||||||
## Window settigns
|
## Window settigns
|
||||||
window:
|
window:
|
||||||
opacity: 0.70
|
opacity: 0.60
|
||||||
padding:
|
padding:
|
||||||
x: 6
|
x: 6
|
||||||
y: 6
|
y: 6
|
||||||
|
@ -386,7 +386,7 @@ font:
|
||||||
bold_italic:
|
bold_italic:
|
||||||
family: mononoki Nerd Font
|
family: mononoki Nerd Font
|
||||||
style: Bold Italic
|
style: Bold Italic
|
||||||
size: 8.5
|
size: 7
|
||||||
offset:
|
offset:
|
||||||
x: 0
|
x: 0
|
||||||
y: 1
|
y: 1
|
||||||
|
|
|
@ -49,8 +49,7 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
||||||
## Blur
|
## Blur
|
||||||
blur: {
|
blur: {
|
||||||
method = "kawase";
|
method = "kawase";
|
||||||
#method = "kernel";
|
strength = 5;
|
||||||
strength = 3;
|
|
||||||
# deviation = 1.0;
|
# deviation = 1.0;
|
||||||
# kernel = "11x11gaussian";
|
# kernel = "11x11gaussian";
|
||||||
background = false;
|
background = false;
|
||||||
|
|
1842
user/.config/suckless/dmenu/scripts/dmenu_emoji
Executable file
1842
user/.config/suckless/dmenu/scripts/dmenu_emoji
Executable file
File diff suppressed because it is too large
Load diff
|
@ -48,7 +48,8 @@ static const Rule rules[] = {
|
||||||
*/
|
*/
|
||||||
/* class instance title tags mask isfloating monitor */
|
/* class instance title tags mask isfloating monitor */
|
||||||
{ "Emacs", NULL, NULL, 1, 0, -1 },
|
{ "Emacs", NULL, NULL, 1, 0, -1 },
|
||||||
{ "qjackctl", NULL, NULL, 0, 1, -1 },
|
{ "QjackCtl", NULL, NULL, 0, 1, -1 },
|
||||||
|
{ "Galculator", NULL, NULL, 0, 1, -1 },
|
||||||
{ "exp", NULL, NULL, 1 << 1, 0, -1 },
|
{ "exp", NULL, NULL, 1 << 1, 0, -1 },
|
||||||
{ "qutebrowser", NULL, NULL, 1 << 2, 0, -1 },
|
{ "qutebrowser", NULL, NULL, 1 << 2, 0, -1 },
|
||||||
{ "cht", NULL, NULL, 1 << 3, 0, -1 },
|
{ "cht", NULL, NULL, 1 << 3, 0, -1 },
|
||||||
|
@ -204,8 +205,10 @@ static Key keys[] = {
|
||||||
{ MODKEY, XK_a, XK_v, spawn, CMD("virt-manager") },
|
{ MODKEY, XK_a, XK_v, spawn, CMD("virt-manager") },
|
||||||
|
|
||||||
/* MISC PROGRAMS launched with emacs-style keychords SUPER + m (app) followed by "key" */
|
/* MISC PROGRAMS launched with emacs-style keychords SUPER + m (app) followed by "key" */
|
||||||
/* Audio mixer */
|
/* System monitor btop */
|
||||||
{ MODKEY, XK_s, XK_b, spawn, CMD("alacritty -t misc --class misc,misc -e btop") },
|
{ MODKEY, XK_s, XK_b, spawn, CMD("alacritty -t misc --class misc,misc -e btop") },
|
||||||
|
/* System monitor htop */
|
||||||
|
{ MODKEY, XK_s, XK_h, spawn, CMD("alacritty -t misc --class misc,misc -e htop") },
|
||||||
/* Pulse mixer */
|
/* Pulse mixer */
|
||||||
{ MODKEY, XK_s, XK_p, spawn, CMD("alacritty -t misc --class misc,misc -e pulsemixer") },
|
{ MODKEY, XK_s, XK_p, spawn, CMD("alacritty -t misc --class misc,misc -e pulsemixer") },
|
||||||
/* Alsa mixer */
|
/* Alsa mixer */
|
||||||
|
@ -238,6 +241,8 @@ static Key keys[] = {
|
||||||
{ MODKEY, XK_p, XK_d, spawn, CMD("$HOME/.config/suckless/dmenu/scripts/dmenu_drun") },
|
{ MODKEY, XK_p, XK_d, spawn, CMD("$HOME/.config/suckless/dmenu/scripts/dmenu_drun") },
|
||||||
/* dmenu_blue */
|
/* dmenu_blue */
|
||||||
{ MODKEY, XK_p, XK_b, spawn, CMD("$HOME/.config/suckless/dmenu/scripts/dmenu_blue") },
|
{ MODKEY, XK_p, XK_b, spawn, CMD("$HOME/.config/suckless/dmenu/scripts/dmenu_blue") },
|
||||||
|
/* dmenu_emoji */
|
||||||
|
{ MODKEY, XK_p, XK_z, spawn, CMD("$HOME/.config/suckless/dmenu/scripts/dmenu_emoji") },
|
||||||
|
|
||||||
/* DWM BOOTSTRAP */
|
/* DWM BOOTSTRAP */
|
||||||
{ MODKEY|ShiftMask|ControlMask, -1, XK_q, quit, {0} },
|
{ MODKEY|ShiftMask|ControlMask, -1, XK_q, quit, {0} },
|
||||||
|
|
Loading…
Reference in a new issue