Merge branch 'master' of ssh://git.lyte.dev:2222/lytedev/dotfiles
This commit is contained in:
commit
f6a8ac3e1a
|
@ -39,6 +39,7 @@ pushd $dfp
|
|||
l common/tmux/conf $h/.tmux.conf
|
||||
l common/fish $c/fish
|
||||
l common/neovim $c/nvim
|
||||
l common/wezterm $c/wezterm
|
||||
l common/colors/vim $c/nvim/colors/base16-donokai.vim
|
||||
l common/weechat $h/.weechat
|
||||
l common/scim/rc $h/.scimrc
|
||||
|
|
|
@ -45,3 +45,5 @@ set editor = "nvim"
|
|||
set charset = "utf-8"
|
||||
set header_cache = "~/.cache/mutt/headers"
|
||||
set message_cachedir = "~/.cache/mutt/bodies"
|
||||
|
||||
set new_mail_command="notify-send 'New Email' '%n new messages, %u unread.' &"
|
||||
|
|
25
common/wezterm/wezterm.lua
Normal file
25
common/wezterm/wezterm.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
local w = require 'wezterm'
|
||||
return {
|
||||
color_schemes = {
|
||||
["Donokai"] = {
|
||||
background = "#111111",
|
||||
foreground = "#ffffff",
|
||||
cursor_bg = "#333333",
|
||||
cursor_fg = "#ffffff",
|
||||
cursor_border = "#666666",
|
||||
selection_fg = "black",
|
||||
selection_bg = "cyan",
|
||||
|
||||
ansi = {"#111111", "#f92672", "#a6e22e", "#f4bf75", "#ae81ff", "#fd971f", "#a1efe4", "#888888"},
|
||||
brights = {"#333333", "#f92672", "#a6e22e", "#f4bf75", "#ae81ff", "#fd971f", "#a1efe4", "#888888"},
|
||||
-- ansi = {"black", "maroon", "green", "olive", "navy", "purple", "teal", "silver"},
|
||||
-- brights = {"grey", "red", "lime", "yellow", "blue", "fuchsia", "aqua", "white"},
|
||||
}
|
||||
},
|
||||
color_scheme = "Donokai",
|
||||
colors = {
|
||||
},
|
||||
font = w.font("Iosevka"),
|
||||
font_size = 14,
|
||||
enable_wayland = true,
|
||||
}
|
|
@ -170,6 +170,7 @@ client.focused_inactive #111111 #111111 #ffffff #111111 #111111
|
|||
client.unfocused #111111 #111111 #ffffff #111111 #111111
|
||||
|
||||
exec_always 'killall kanshi; kanshi'
|
||||
exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
|
||||
exec mako
|
||||
exec pipewire
|
||||
exec_always notify-send -a "Sway" -i ~/.wallpaper "Sway configuration loaded."
|
||||
|
|
Reference in a new issue