diff --git a/.config/wezterm/config/color.lua b/.config/wezterm/config/color.lua index 2da0ca6..aae5788 100644 --- a/.config/wezterm/config/color.lua +++ b/.config/wezterm/config/color.lua @@ -1,48 +1,48 @@ local wezterm = require 'wezterm'; -local color_default_fg_light = wezterm.color.parse("#cacaca") +-- local color_default_fg_light = wezterm.color.parse("#cacaca") local color_default_fg_dark = wezterm.color.parse("#303030") return { - VERIDIAN = { + --[[ VERIDIAN = { bg = wezterm.color.parse("#4D8060"), fg = color_default_fg_light - }, - PAYNE = { + }, ]] + --[[ PAYNE = { bg = wezterm.color.parse("#385F71"), fg = color_default_fg_light - }, - INDIGO = { + }, ]] + --[[ INDIGO = { bg = wezterm.color.parse("#7C77B9"), fg = color_default_fg_light - }, + }, ]] CAROLINA = { bg = wezterm.color.parse("#8FBFE0"), fg = color_default_fg_dark }, - FLAME = { + --[[ FLAME = { bg = wezterm.color.parse("#D36135"), fg = color_default_fg_dark - }, - JET = { + }, ]] + --[[ JET = { bg = wezterm.color.parse("#282B28"), fg = color_default_fg_light - }, - TAUPE = { + }, ]] + --[[ TAUPE = { bg = wezterm.color.parse("#785964"), fg = color_default_fg_light - }, - ECRU = { + }, ]] + --[[ ECRU = { bg = wezterm.color.parse("#C6AE82"), fg = color_default_fg_dark - }, - VIOLET = { + }, ]] + --[[ VIOLET = { bg = wezterm.color.parse("#685F74"), fg = color_default_fg_light - }, - VERDIGRIS = { + }, ]] + --[[ VERDIGRIS = { bg = wezterm.color.parse("#28AFB0"), fg = color_default_fg_light - } + } ]] } diff --git a/.config/wezterm/config/init.lua b/.config/wezterm/config/init.lua index 355ed76..2018b5b 100644 --- a/.config/wezterm/config/init.lua +++ b/.config/wezterm/config/init.lua @@ -46,7 +46,7 @@ wezterm.font { family = 'font-Hack-nerd-font' } -local home = os.getenv( "HOME" ) +-- local home = os.getenv( "HOME" ) -- local background_path = home .. '/.config/wezterm/config/background.jpg' ---@class Config @@ -61,7 +61,7 @@ local Config = { color_scheme = 'Molokai', -- color_scheme = 'tokyonight_storm', window_background_opacity = 0.85, - macos_window_background_blur = 20, + macos_window_background_blur = 15, hide_tab_bar_if_only_one_tab = true, -- cursor @@ -75,14 +75,13 @@ local Config = { -- hide_tab_bar_if_only_one_tab = true, -- window - window_background_image = background_path, - inactive_pane_hsb = { saturation = 1.0, brightness = 1.0 }, + -- window_background_image = background_path, + -- inactive_pane_hsb = { saturation = 1.0, brightness = 1.0 }, leader = { key = 'Space', mods = 'CTRL|SHIFT' }, keys = keys, macos_forward_to_ime_modifier_mask = "SHIFT|CTRL", - -- use_ime = true use_ime = true } diff --git a/.config/wezterm/config/tabline.lua b/.config/wezterm/config/tabline.lua index 737aac8..498e4c8 100644 --- a/.config/wezterm/config/tabline.lua +++ b/.config/wezterm/config/tabline.lua @@ -10,16 +10,16 @@ local color = (function() local COLOR = require "config.color" local coolors = { - COLOR.VERIDIAN, + --[[ COLOR.VERIDIAN, COLOR.PAYNE, - COLOR.INDIGO, + COLOR.INDIGO, ]] COLOR.CAROLINA, - COLOR.FLAME, + --[[ COLOR.FLAME, COLOR.JET, COLOR.TAUPE, COLOR.ECRU, COLOR.VIOLET, - COLOR.VERDIGRIS + COLOR.VERDIGRIS ]] } return coolors[math.random(#coolors)]