1
0
Fork 0
mirror of https://github.com/eoli3n/dotfiles synced 2024-05-11 01:56:06 +02:00

Compare commits

...

4 Commits

Author SHA1 Message Date
eoli3n f046e771ed added git metrics in starship config 2023-11-07 20:30:56 +01:00
eoli3n 5306998702 senpai start with wezterm, and never confirm wezterm close 2023-11-07 17:30:12 +01:00
eoli3n a6465a5a09 some cleaning in TODO and from kitty to wezterm 2023-11-07 17:23:07 +01:00
eoli3n a93facb262 wezterm no bold 2023-11-07 17:16:23 +01:00
5 changed files with 25 additions and 19 deletions

11
TODO.md
View File

@ -13,7 +13,6 @@
- [ ] neomutt
### TOFIX
- [ ] change kitty block char when unused term
- [x] disable or improve tooltips on waybar modules
- [ ] /etc/profile.d not used with fish as default shell
- [x] travis-ci fails : archlinux/base cannot pull
@ -29,17 +28,7 @@
### TOTEST
- [ ] wf-recorder
- [ ] launch kitty in xwayland mode to be able to share window
- [ ] waybar pkg module tooltip with flatpak and xbps
- hardware acceleration
- [ ] firefox
- [ ] kitty
- [ ] mpv
### ISSUES
- [ ] tiny-irc : https://github.com/osa1/tiny/issues/created_by/eoli3n
- [ ] firefox menu size when scaling : https://bugzilla.mozilla.org/show_bug.cgi?id=1638168
- [ ] firefox crash when sway reload : https://bugzilla.mozilla.org/show_bug.cgi?id=1652820
- [ ] firefox list broken with multihead and factor : https://github.com/swaywm/sway/issues/6147
- [ ] firefox right clic broken : https://bugzilla.mozilla.org/show_bug.cgi?id=1661516
- [ ] gopass-jsonapi can't find gpg in PATH : https://github.com/gopasspw/gopass-jsonapi/issues/26

View File

@ -53,9 +53,6 @@
- role: mako
tags: mako
when: ansible_user_id != 'root'
- role: kitty
tags: kitty
when: ansible_user_id != 'root'
- role: mpv
tags: mpv
when: ansible_user_id != 'root'
@ -77,3 +74,6 @@
- role: wezterm
tags: wezterm
when: ansible_user_id != 'root'
#- role: kitty
# tags: kitty
# when: ansible_user_id != 'root'

View File

@ -19,5 +19,10 @@ ahead = "⇡${count} "
diverged = "⇕⇡${ahead_count}⇣${behind_count} "
behind = "⇣${count} "
[git_metrics]
disabled = false
added_style = 'bold blue' ■
format = '[+$added]($added_style)/[-$deleted]($deleted_style) '
[gcloud]
disabled = true

View File

@ -26,7 +26,7 @@ gaps inner 4
gaps outer -4
# start a terminal
bindsym $mod+Return exec kitty
bindsym $mod+Return exec wezterm
# start wofi
bindsym $mod+Shift+d exec --no-startup-id wofi --show run -p "shell:" -L10
@ -224,7 +224,7 @@ exec dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
# variery
exec variety &
# irc client
exec swaymsg 'workspace $tag4; exec kitty bash -c "senpai"'
exec swaymsg 'workspace $tag4; exec wezterm start -- bash -c "senpai"'
# waybar exec
exec_always ~/.config/waybar/waybar.sh &
# wob exec

View File

@ -1,11 +1,23 @@
local wezterm = require 'wezterm'
local config = {}
config.font =
wezterm.font('JetBrains Mono', { weight = 'Light'})
config.font = wezterm.font {
family = 'jetbrains mono light'
}
config.font_rules = {
{
intensity = 'Bold',
italic = false,
font = wezterm.font {
family = 'jetbrains mono light',
}
}
}
config.font_size = 10.0
config.hide_tab_bar_if_only_one_tab = true
config.default_cursor_style = 'BlinkingBar'
config.front_end = "WebGpu"
config.colors = {
foreground = '{{ color7 }}',
@ -38,7 +50,7 @@ config.colors = {
config.window_background_opacity = 0.9
config.text_background_opacity = 1
config.window_decorations = "NONE"
config.window_close_confirmation = 'NeverPrompt'
config.hyperlink_rules = wezterm.default_hyperlink_rules()
return config