From e84b624ffb01654c6960117963c20d9bd10cb8a9 Mon Sep 17 00:00:00 2001 From: Marvin Elsen Date: Wed, 30 Apr 2025 09:10:02 +0200 Subject: [PATCH] Remove wezterm dotfiles --- wezterm/.config/wezterm/appearance.lua | 12 ----------- wezterm/.config/wezterm/wezterm.lua | 28 -------------------------- 2 files changed, 40 deletions(-) delete mode 100644 wezterm/.config/wezterm/appearance.lua delete mode 100644 wezterm/.config/wezterm/wezterm.lua diff --git a/wezterm/.config/wezterm/appearance.lua b/wezterm/.config/wezterm/appearance.lua deleted file mode 100644 index 990887e..0000000 --- a/wezterm/.config/wezterm/appearance.lua +++ /dev/null @@ -1,12 +0,0 @@ -local wezterm = require 'wezterm' - -local module = {} - -function module.is_dark() - if wezterm.gui then - return wezterm.gui.get_appearance():find("Dark") - end - return true -end - -return module diff --git a/wezterm/.config/wezterm/wezterm.lua b/wezterm/.config/wezterm/wezterm.lua deleted file mode 100644 index e86ab40..0000000 --- a/wezterm/.config/wezterm/wezterm.lua +++ /dev/null @@ -1,28 +0,0 @@ -local wezterm = require 'wezterm' -local appearance = require 'appearance' - -local config = wezterm.config_builder() - --- https://wezfurlong.org/wezterm/colorschemes/index.html - --- if appearance.is_dark() then - config.color_scheme = 'Catppuccin Mocha' - --- else --- config.color_scheme = 'Catppuccin Latte' ---end - -config.font = wezterm.font({ family = 'FantasqueSansM Nerd Font' }) -config.font_size = 14 - --- config.window_background_opacity = 1 --- config.macos_window_background_blur = 30 -config.window_decorations = 'RESIZE|INTEGRATED_BUTTONS' -config.window_frame = { - font = wezterm.font({ family = 'FantasqueSansM Nerd Font', weight = 'Bold' }), - font_size = 14 -} - -config.default_prog = { '/opt/homebrew/bin/fish', '-li' } - -return config