Little things
This commit is contained in:
parent
ed6c0d3b79
commit
81106dad96
|
@ -38,6 +38,7 @@ pushd $dfp
|
||||||
l common/tmux/conf $h/.tmux.conf
|
l common/tmux/conf $h/.tmux.conf
|
||||||
l common/fish $c/fish
|
l common/fish $c/fish
|
||||||
l common/neovim $c/nvim
|
l common/neovim $c/nvim
|
||||||
|
l common/wezterm $c/wezterm
|
||||||
l common/colors/vim $c/nvim/colors/base16-donokai.vim
|
l common/colors/vim $c/nvim/colors/base16-donokai.vim
|
||||||
l common/weechat $h/.weechat
|
l common/weechat $h/.weechat
|
||||||
l common/scim/rc $h/.scimrc
|
l common/scim/rc $h/.scimrc
|
||||||
|
@ -47,7 +48,7 @@ l common/kak $c/kak
|
||||||
l common/gpg/agent.conf $h/.gnupg/gpg-agent.conf
|
l common/gpg/agent.conf $h/.gnupg/gpg-agent.conf
|
||||||
l common/htop/rc $c/htop/htoprc
|
l common/htop/rc $c/htop/htoprc
|
||||||
l common/kitty $c/kitty
|
l common/kitty $c/kitty
|
||||||
l common/mutt/rc $c/.muttrc
|
l common/mutt/rc $h/.muttrc
|
||||||
l common/git/config $h/.gitconfig
|
l common/git/config $h/.gitconfig
|
||||||
l common/elixir/iex.exs $h/.iex.exs
|
l common/elixir/iex.exs $h/.iex.exs
|
||||||
l common/data/user-dirs $c/user-dirs.dirs
|
l common/data/user-dirs $c/user-dirs.dirs
|
||||||
|
|
|
@ -45,3 +45,5 @@ set editor = "nvim"
|
||||||
set charset = "utf-8"
|
set charset = "utf-8"
|
||||||
set header_cache = "~/.cache/mutt/headers"
|
set header_cache = "~/.cache/mutt/headers"
|
||||||
set message_cachedir = "~/.cache/mutt/bodies"
|
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,
|
||||||
|
}
|
|
@ -166,6 +166,7 @@ client.focused_inactive #111111 #111111 #ffffff #111111 #111111
|
||||||
client.unfocused #111111 #111111 #ffffff #111111 #111111
|
client.unfocused #111111 #111111 #ffffff #111111 #111111
|
||||||
|
|
||||||
exec_always 'killall kanshi; kanshi'
|
exec_always 'killall kanshi; kanshi'
|
||||||
|
exec dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
|
||||||
exec mako
|
exec mako
|
||||||
exec pipewire
|
exec pipewire
|
||||||
exec_always notify-send -a "Sway" -i ~/.wallpaper "Sway configuration loaded."
|
exec_always notify-send -a "Sway" -i ~/.wallpaper "Sway configuration loaded."
|
||||||
|
|
Reference in a new issue