Compare commits
3 Commits
9c4aa6b7f3
...
b7315dda56
Author | SHA1 | Date |
---|---|---|
sudo pacman -Syu | b7315dda56 | |
sudo pacman -Syu | 1d3b493bb5 | |
sudo pacman -Syu | b2034c8360 |
|
@ -41,4 +41,5 @@ go build ./cmd/dot
|
|||
- [pokeget](https://github.com/talwat/pokeget-rs)
|
||||
- [btop](https://github.com/aristocratos/btop)
|
||||
- [newsboat](https://github.com/newsboat/newsboat)
|
||||
- [sioyek](https://github.com/ahrm/sioyek)
|
||||
- [daktilo](https://github.com/orhun/daktilo)
|
||||
|
|
|
@ -22,6 +22,10 @@ external = "~/.config/kitty/kitty.conf"
|
|||
internal = "data/kitty/mocha.conf"
|
||||
external = "~/.config/kitty/mocha.conf"
|
||||
|
||||
[[apps.kitty.paths]]
|
||||
internal = "data/kitty/latte.conf"
|
||||
external = "~/.config/kitty/latte.conf"
|
||||
|
||||
[[apps.kitty.paths]]
|
||||
internal = "data/kitty/kitty-dark.icns"
|
||||
external = "~/.config/kitty/kitty.app.icns"
|
||||
|
@ -30,6 +34,10 @@ external = "~/.config/kitty/kitty.app.icns"
|
|||
internal = "data/kitty/mocha.conf"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/kitty/main/themes/mocha.conf"
|
||||
|
||||
[[apps.kitty.paths]]
|
||||
internal = "data/kitty/latte.conf"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/kitty/main/themes/latte.conf"
|
||||
|
||||
[[apps.kitty.paths]]
|
||||
internal = "data/kitty/kitty-dark.icns"
|
||||
url = "https://github.com/DinkDonk/kitty-icon/blob/main/kitty-dark.icns?raw=true"
|
||||
|
@ -98,6 +106,10 @@ external = "~/.config/newsboat/dark"
|
|||
internal = "data/newsboat/dark"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/newsboat/main/themes/dark"
|
||||
|
||||
[[apps.sioyek.paths]]
|
||||
internal = "data/sioyek/prefs_user.config"
|
||||
external = "~/.config/sioyek/prefs_user.config"
|
||||
|
||||
[[apps.daktilo.paths]]
|
||||
internal = "data/daktilo/daktilo.toml"
|
||||
external = "~/.config/daktilo/daktilo.toml"
|
||||
|
|
|
@ -0,0 +1,80 @@
|
|||
# vim:ft=kitty
|
||||
|
||||
## name: Catppuccin Kitty Latte
|
||||
## author: Catppuccin Org
|
||||
## license: MIT
|
||||
## upstream: https://github.com/catppuccin/kitty/blob/main/themes/latte.conf
|
||||
## blurb: Soothing pastel theme for the high-spirited!
|
||||
|
||||
|
||||
|
||||
# The basic colors
|
||||
foreground #4c4f69
|
||||
background #eff1f5
|
||||
selection_foreground #eff1f5
|
||||
selection_background #dc8a78
|
||||
|
||||
# Cursor colors
|
||||
cursor #dc8a78
|
||||
cursor_text_color #eff1f5
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color #dc8a78
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color #7287fd
|
||||
inactive_border_color #9ca0b0
|
||||
bell_border_color #df8e1d
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color system
|
||||
macos_titlebar_color system
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground #eff1f5
|
||||
active_tab_background #8839ef
|
||||
inactive_tab_foreground #4c4f69
|
||||
inactive_tab_background #9ca0b0
|
||||
tab_bar_background #bcc0cc
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground #eff1f5
|
||||
mark1_background #7287fd
|
||||
mark2_foreground #eff1f5
|
||||
mark2_background #8839ef
|
||||
mark3_foreground #eff1f5
|
||||
mark3_background #209fb5
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 #5c5f77
|
||||
color8 #6c6f85
|
||||
|
||||
# red
|
||||
color1 #d20f39
|
||||
color9 #d20f39
|
||||
|
||||
# green
|
||||
color2 #40a02b
|
||||
color10 #40a02b
|
||||
|
||||
# yellow
|
||||
color3 #df8e1d
|
||||
color11 #df8e1d
|
||||
|
||||
# blue
|
||||
color4 #1e66f5
|
||||
color12 #1e66f5
|
||||
|
||||
# magenta
|
||||
color5 #ea76cb
|
||||
color13 #ea76cb
|
||||
|
||||
# cyan
|
||||
color6 #179299
|
||||
color14 #179299
|
||||
|
||||
# white
|
||||
color7 #acb0be
|
||||
color15 #bcc0cc
|
|
@ -0,0 +1,7 @@
|
|||
font_size 14
|
||||
ui_font Shantell Sans Normal
|
||||
status_bar_font_size 14
|
||||
|
||||
should_launch_new_window 1
|
||||
super_fast_search 1
|
||||
horizontal_move_amount -1.0
|
|
@ -197,6 +197,8 @@ func (c *cfg) Download(appNames ...string) error {
|
|||
URL: p.URL,
|
||||
}
|
||||
|
||||
httpClient := &http.Client{}
|
||||
|
||||
eg.Go(func() error {
|
||||
if c.isDryRun {
|
||||
fmt.Printf("Download [%s] -> [%s]\n", p.URL, p.Internal)
|
||||
|
@ -204,7 +206,7 @@ func (c *cfg) Download(appNames ...string) error {
|
|||
}
|
||||
|
||||
// nolint:noctx,gosec
|
||||
httpRsp, err := http.Get(p.URL)
|
||||
httpRsp, err := httpClient.Get(p.URL)
|
||||
if err != nil {
|
||||
return fmt.Errorf("http client: failed to get: %w", err)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue