Finalised tweaks to waybar niri and wezterm

This commit is contained in:
2025-06-26 16:27:25 +09:30
parent bafa00a6a1
commit 0f8709784a
3 changed files with 19 additions and 15 deletions

View File

@@ -1,17 +1,17 @@
local wezterm = require 'wezterm'
local wezterm = require("wezterm")
local c = {}
-- Display Configuration
c.font = wezterm.font 'NotoMono Nerd Font'
c.color_scheme = 'Catppuccin Macchiato'
c.font = wezterm.font("NotoMono Nerd Font")
c.color_scheme = "Catppuccin Macchiato"
c.window_background_opacity = 0.7
c.window_decorations = 'RESIZE'
c.window_decorations = "NONE"
c.visual_bell = {
fade_in_function = 'EaseIn',
fade_in_duration_ms = 150,
fade_out_function = 'EaseOut',
fade_out_duration_ms = 150,
fade_in_function = "EaseIn",
fade_in_duration_ms = 150,
fade_out_function = "EaseOut",
fade_out_duration_ms = 150,
}
-- Tab Configuration
@@ -23,6 +23,6 @@ c.switch_to_last_active_tab_when_closing_tab = true
-- Stop Confirming shit please
c.window_close_confirmation = 'NeverPrompt'
c.window_close_confirmation = "NeverPrompt"
return c