always something to tweak
This commit is contained in:
parent
6317a25709
commit
586f2b067e
|
|
@ -17,7 +17,7 @@ import i3ipc
|
|||
|
||||
DEFAULT_CONF = {
|
||||
"menu": "rofi -dmenu -p 'quickterm: ' -no-custom -auto-select",
|
||||
"term": "urxvt",
|
||||
"term": "st",
|
||||
"history": "{$HOME}/.cache/i3/i3-quickterm.order",
|
||||
"ratio": 0.25,
|
||||
"pos": "top",
|
||||
|
|
|
|||
|
|
@ -79,8 +79,12 @@ shadow-opacity = 0.5;
|
|||
# (most applications are fine, only apps that do weird things with xshapes or argb are affected).
|
||||
# This list includes all the affected apps I found in my testing. The "! name~=''" part excludes shadows on any "Unknown" windows, this prevents a visual glitch with the XFWM alt tab switcher.
|
||||
shadow-exclude = [
|
||||
"! name~=''",
|
||||
"name = 'Notification'",
|
||||
"name *= 'Chrome'",
|
||||
"class_g ?= 'Notify-osd'",
|
||||
"name *= 'Firefox'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
];
|
||||
# Avoid drawing shadow on all shaped windows (see also: --detect-rounded-corners)
|
||||
shadow-ignore-shaped = false;
|
||||
|
|
@ -91,9 +95,9 @@ shadow-ignore-shaped = false;
|
|||
#
|
||||
#################################
|
||||
|
||||
menu-opacity = 0.8;
|
||||
inactive-opacity = 0.7;
|
||||
active-opacity = 0.9;
|
||||
menu-opacity = 1;
|
||||
inactive-opacity = 1;
|
||||
active-opacity = 1;
|
||||
frame-opacity = 1;
|
||||
inactive-opacity-override = false;
|
||||
alpha-step = 0.06;
|
||||
|
|
@ -106,9 +110,11 @@ opacity-rule = [
|
|||
"80:class_g = 'St' && focused",
|
||||
"60:class_g = 'St' && !focused",
|
||||
"70:class_g = 'Code'",
|
||||
"70:class_g = 'code-oss'",
|
||||
"99:class_g = 'Google-chrome' && focused",
|
||||
"60:class_g = 'Google-chrome' && !focused"
|
||||
"70:class_g = 'code-oss'"
|
||||
#"99:class_g = 'Google-chrome' && focused",
|
||||
#"60:class_g = 'Google-chrome' && !focused",
|
||||
#"99:class_g = 'Firefox' && focused",
|
||||
#"70:class_g = 'Firefox' && !focused"
|
||||
];
|
||||
|
||||
# Dim inactive windows. (0.0 - 1.0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue