Prefix beautiful variables with "machi"

This commit is contained in:
Gokul Swami 2021-03-01 02:37:57 -08:00
parent e86e9c957e
commit 88ee21dcdc
2 changed files with 14 additions and 14 deletions

View File

@ -664,14 +664,14 @@ function module.create(data)
local info_size = api.dpi(60) local info_size = api.dpi(60)
-- colors are in rgba -- colors are in rgba
local border_color = with_alpha(api.gears.color( local border_color = with_alpha(api.gears.color(
api.beautiful.editor_border_color or api.beautiful.border_focus), api.beautiful.machi_editor_border_color or api.beautiful.border_focus),
api.beautiful.editor_border_opacity or 0.75) api.beautiful.machi_editor_border_opacity or 0.75)
local active_color = with_alpha(api.gears.color( local active_color = with_alpha(api.gears.color(
api.beautiful.editor_active_color or api.beautiful.bg_focus), api.beautiful.machi_editor_active_color or api.beautiful.bg_focus),
api.beautiful.editor_active_opacity or 0.5) api.beautiful.machi_editor_active_opacity or 0.5)
local open_color = with_alpha(api.gears.color( local open_color = with_alpha(api.gears.color(
api.beautiful.editor_open_color or api.beautiful.bg_normal), api.beautiful.machi_editor_open_color or api.beautiful.bg_normal),
api.beautiful.editor_open_opacity or 0.5) api.beautiful.machi_editor_open_opacity or 0.5)
local closed_color = open_color local closed_color = open_color
screen = screen or api.screen.focused() screen = screen or api.screen.focused()

View File

@ -51,17 +51,17 @@ function module.start(c, exit_keys)
local font_color_hl = with_alpha(api.gears.color(api.beautiful.fg_focus), 1) local font_color_hl = with_alpha(api.gears.color(api.beautiful.fg_focus), 1)
local label_size = api.dpi(30) local label_size = api.dpi(30)
local border_color = with_alpha(api.gears.color( local border_color = with_alpha(api.gears.color(
api.beautiful.switcher_border_color or api.beautiful.border_focus), api.beautiful.machi_switcher_border_color or api.beautiful.border_focus),
api.beautiful.switcher_border_opacity or 0.25) api.beautiful.machi_switcher_border_opacity or 0.25)
local fill_color = with_alpha(api.gears.color( local fill_color = with_alpha(api.gears.color(
api.beautiful.switcher_fill_color or api.beautiful.bg_normal), api.beautiful.machi_switcher_fill_color or api.beautiful.bg_normal),
api.beautiful.switcher_fill_opacity or 0.25) api.beautiful.machi_switcher_fill_opacity or 0.25)
local box_bg = with_alpha(api.gears.color( local box_bg = with_alpha(api.gears.color(
api.beautiful.switcher_box_bg or api.beautiful.bg_normal), api.beautiful.machi_switcher_box_bg or api.beautiful.bg_normal),
api.beautiful.switcher_box_opacity or 0.85) api.beautiful.machi_switcher_box_opacity or 0.85)
local fill_color_hl = with_alpha(api.gears.color( local fill_color_hl = with_alpha(api.gears.color(
api.beautiful.switcher_fill_color_hl or api.beautiful.bg_focus), api.beautiful.machi_switcher_fill_color_hl or api.beautiful.bg_focus),
api.beautiful.switcher_fill_hl_opacity or 1) api.beautiful.machi_switcher_fill_hl_opacity or 1)
-- for comparing floats -- for comparing floats
local threshold = 0.1 local threshold = 0.1
local traverse_radius = api.dpi(5) local traverse_radius = api.dpi(5)