Compare commits
No commits in common. "591f631aa0fa9c8f0c499f45499ff6d059dd71d2" and "c5618f2f2c5bffb19fc6d92c6aa0faf1bab3bf2f" have entirely different histories.
591f631aa0
...
c5618f2f2c
278 changed files with 5844 additions and 1160 deletions
|
|
@ -1,33 +0,0 @@
|
||||||
includes = []
|
|
||||||
packages = ["default"]
|
|
||||||
|
|
||||||
[files]
|
|
||||||
"configs/hypr/work-laptop/hyprland.conf" = "~/.config/hypr/include/work-laptop.conf"
|
|
||||||
|
|
||||||
|
|
||||||
[files."configs/niri/config.kdl"]
|
|
||||||
target = "~/.config/niri/config.kdl"
|
|
||||||
type = "template"
|
|
||||||
append = """
|
|
||||||
window-rule {
|
|
||||||
match app-id="brave-work"
|
|
||||||
open-on-workspace "1"
|
|
||||||
open-focused true
|
|
||||||
|
|
||||||
default-column-width {
|
|
||||||
proportion 0.5
|
|
||||||
}
|
|
||||||
}
|
|
||||||
window-rule {
|
|
||||||
match app-id="brave-personal"
|
|
||||||
open-on-workspace "2"
|
|
||||||
open-focused false
|
|
||||||
|
|
||||||
default-column-width {
|
|
||||||
proportion 0.5
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
[variables]
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
includes = []
|
|
||||||
packages = ["default"]
|
|
||||||
|
|
||||||
[files]
|
|
||||||
"configs/hypr/almighty/hyprland.conf" = "~/.config/hypr/include/almighty.conf"
|
|
||||||
|
|
||||||
[variables]
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
[settings]
|
|
||||||
default_target_type = "symbolic"
|
|
||||||
|
|
||||||
[helpers]
|
|
||||||
|
|
||||||
[default]
|
|
||||||
depends = ["niri"]
|
|
||||||
|
|
||||||
[default.files]
|
|
||||||
"configs/fish" = "~/.config/fish"
|
|
||||||
"configs/alacritty" = "~/.config/alacritty"
|
|
||||||
"configs/atuin" = "~/.config/atuin"
|
|
||||||
"configs/bat" = "~/.config/bat"
|
|
||||||
"configs/containers" = "~/.config/containers"
|
|
||||||
"configs/fzf" = "~/.config/fzf"
|
|
||||||
"configs/ghostty" = "~/.config/ghostty"
|
|
||||||
"configs/git" = "~/.config/git"
|
|
||||||
"configs/hypr/base" = "~/.config/hypr"
|
|
||||||
"configs/kitty" = "~/.config/kitty"
|
|
||||||
"configs/lazygit" = "~/.config/lazygit"
|
|
||||||
"configs/mako" = "~/.config/mako"
|
|
||||||
"configs/mise" = "~/.config/mise"
|
|
||||||
"configs/mpv" = "~/.config/mpv"
|
|
||||||
"configs/nvim" = "~/.config/nvim"
|
|
||||||
"configs/rofi" = "~/.config/rofi"
|
|
||||||
"configs/swappy" = "~/.config/swappy"
|
|
||||||
"configs/swaync" = "~/.config/swaync"
|
|
||||||
"configs/uwsm" = "~/.config/uwsm"
|
|
||||||
"configs/vimiv" = "~/.config/vimiv"
|
|
||||||
"configs/waybar" = "~/.config/waybar"
|
|
||||||
"configs/wezterm" = "~/.config/wezterm"
|
|
||||||
"configs/wlogout" = "~/.config/wlogout"
|
|
||||||
"configs/wpaperd" = "~/.config/wpaperd"
|
|
||||||
"configs/yazi" = "~/.config/yazi"
|
|
||||||
"configs/systemd" = "~/.config/systemd"
|
|
||||||
|
|
||||||
|
|
||||||
[default.variables]
|
|
||||||
|
|
||||||
[niri.files]
|
|
||||||
"configs/niri" = "~/.config/niri"
|
|
||||||
37
Configs/bin/.local/bin/youtube-music-updater
Executable file
37
Configs/bin/.local/bin/youtube-music-updater
Executable file
|
|
@ -0,0 +1,37 @@
|
||||||
|
#!/bin/env bash
|
||||||
|
|
||||||
|
package=$1
|
||||||
|
shift
|
||||||
|
|
||||||
|
if [[ -z $package ]]; then
|
||||||
|
echo "Please specify an installation method"
|
||||||
|
echo "Available methods: Flatpak, RPM"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
DOWNLOAD_DIR="$HOME/.local/share/youtube-music-updater"
|
||||||
|
mkdir -p "$DOWNLOAD_DIR"
|
||||||
|
|
||||||
|
latest=$(wget 'https://github.com/th-ch/youtube-music/releases/latest/download/latest-linux.yml' -q -O -)
|
||||||
|
version=$(echo "$latest" | grep 'version' | awk '{ print $2 }')
|
||||||
|
base_url="https://github.com/th-ch/youtube-music/releases/latest/download"
|
||||||
|
|
||||||
|
echo "Downloading YouTube Music version $version"
|
||||||
|
|
||||||
|
case "${package,,}" in
|
||||||
|
"flatpak")
|
||||||
|
wget "$base_url/YouTube-Music-$version-x86_64.flatpak" \
|
||||||
|
-q --show-progress \
|
||||||
|
-O "$DOWNLOAD_DIR/YouTube-Music-$version-x86_64.flatpak"
|
||||||
|
|
||||||
|
flatpak remove --user --assumeyes --noninteractive com.github.th_ch.youtube_music
|
||||||
|
flatpak install --user --assumeyes --noninteractive "$DOWNLOAD_DIR/YouTube-Music-$version-x86_64.flatpak"
|
||||||
|
;;
|
||||||
|
"rpm")
|
||||||
|
wget "$base_url/youtube-music-$version.x86_64.rpm" \
|
||||||
|
-q --show-progress \
|
||||||
|
-O "$DOWNLOAD_DIR/youtube-music-$version.x86_64.rpm"
|
||||||
|
|
||||||
|
sudo dnf install --assumeyes "$DOWNLOAD_DIR/youtube-music-$version.x86_64.rpm"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
2
Configs/fish/.config/fish/conf.d/uv.env.fish
Normal file
2
Configs/fish/.config/fish/conf.d/uv.env.fish
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
source "$HOME/.local/share/../bin/env.fish"
|
||||||
197
Configs/foot/.config/foot/foot.ini
Normal file
197
Configs/foot/.config/foot/foot.ini
Normal file
|
|
@ -0,0 +1,197 @@
|
||||||
|
# -*- conf -*-
|
||||||
|
|
||||||
|
# shell=$SHELL (if set, otherwise user's default shell from /etc/passwd)
|
||||||
|
# term=foot (or xterm-256color if built with -Dterminfo=disabled)
|
||||||
|
# login-shell=no
|
||||||
|
|
||||||
|
include=~/.config/foot/themes/catppuccin/catppuccin-macchiato.conf
|
||||||
|
|
||||||
|
# app-id=foot
|
||||||
|
# title=foot
|
||||||
|
# locked-title=no
|
||||||
|
|
||||||
|
font=JetBrainsMono NF:style=Regular:size=11
|
||||||
|
font-bold=JetBrainsMono NF:style=Bold:size=11
|
||||||
|
font-italic=JetBrainsMono NF:style=Italic:size=11
|
||||||
|
font-bold-italic=JetBrainsMono NF:style=Bold Italic:size=11
|
||||||
|
# line-height=<font metrics>
|
||||||
|
# letter-spacing=0
|
||||||
|
# horizontal-letter-offset=0
|
||||||
|
# vertical-letter-offset=0
|
||||||
|
# underline-offset=<font metrics>
|
||||||
|
# box-drawings-uses-font-glyphs=no
|
||||||
|
# dpi-aware=auto
|
||||||
|
|
||||||
|
# initial-window-size-pixels=700x500 # Or,
|
||||||
|
# initial-window-size-chars=<COLSxROWS>
|
||||||
|
# initial-window-mode=windowed
|
||||||
|
pad=10x10
|
||||||
|
# resize-delay-ms=100
|
||||||
|
|
||||||
|
# notify=notify-send -a ${app-id} -i ${app-id} ${title} ${body}
|
||||||
|
|
||||||
|
# bold-text-in-bright=no
|
||||||
|
# word-delimiters=,│`|:"'()[]{}<>
|
||||||
|
# selection-target=primary
|
||||||
|
# workers=<number of logical CPUs>
|
||||||
|
|
||||||
|
[environment]
|
||||||
|
# name=value
|
||||||
|
|
||||||
|
[bell]
|
||||||
|
# urgent=no
|
||||||
|
# notify=no
|
||||||
|
# command=
|
||||||
|
# command-focused=no
|
||||||
|
|
||||||
|
[scrollback]
|
||||||
|
# lines=1000
|
||||||
|
# multiplier=3.0
|
||||||
|
# indicator-position=relative
|
||||||
|
# indicator-format=
|
||||||
|
|
||||||
|
[url]
|
||||||
|
# launch=xdg-open ${url}
|
||||||
|
# label-letters=sadfjklewcmpgh
|
||||||
|
# osc8-underline=url-mode
|
||||||
|
# protocols=http, https, ftp, ftps, file, gemini, gopher
|
||||||
|
# uri-characters=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.,~:;/?#@!$&%*+="'()[]
|
||||||
|
|
||||||
|
[cursor]
|
||||||
|
# style=block
|
||||||
|
# color=<inverse foreground/background>
|
||||||
|
# blink=no
|
||||||
|
# beam-thickness=1.5
|
||||||
|
# underline-thickness=<font underline thickness>
|
||||||
|
|
||||||
|
[mouse]
|
||||||
|
# hide-when-typing=no
|
||||||
|
# alternate-scroll-mode=yes
|
||||||
|
|
||||||
|
[colors]
|
||||||
|
alpha=0.9
|
||||||
|
# foreground=dcdccc
|
||||||
|
# background=111111
|
||||||
|
|
||||||
|
## Normal/regular colors (color palette 0-7)
|
||||||
|
# regular0=222222 # black
|
||||||
|
# regular1=cc9393 # red
|
||||||
|
# regular2=7f9f7f # green
|
||||||
|
# regular3=d0bf8f # yellow
|
||||||
|
# regular4=6ca0a3 # blue
|
||||||
|
# regular5=dc8cc3 # magenta
|
||||||
|
# regular6=93e0e3 # cyan
|
||||||
|
# regular7=dcdccc # white
|
||||||
|
|
||||||
|
## Bright colors (color palette 8-15)
|
||||||
|
# bright0=666666 # bright black
|
||||||
|
# bright1=dca3a3 # bright red
|
||||||
|
# bright2=bfebbf # bright green
|
||||||
|
# bright3=f0dfaf # bright yellow
|
||||||
|
# bright4=8cd0d3 # bright blue
|
||||||
|
# bright5=fcace3 # bright magenta
|
||||||
|
# bright6=b3ffff # bright cyan
|
||||||
|
# bright7=ffffff # bright white
|
||||||
|
|
||||||
|
## dimmed colors (see foot.ini(5) man page)
|
||||||
|
# dim0=<not set>
|
||||||
|
# ...
|
||||||
|
# dim7=<not-set>
|
||||||
|
|
||||||
|
## The remaining 256-color palette
|
||||||
|
# 16 = <256-color palette #16>
|
||||||
|
# ...
|
||||||
|
# 255 = <256-color palette #255>
|
||||||
|
|
||||||
|
## Misc colors
|
||||||
|
# selection-foreground=<inverse foreground/background>
|
||||||
|
# selection-background=<inverse foreground/background>
|
||||||
|
# jump-labels=<regular0> <regular3> # black-on-yellow
|
||||||
|
# scrollback-indicator=<regular0> <bright4> # black-on-bright-blue
|
||||||
|
# search-box-no-match=<regular0> <regular1> # black-on-red
|
||||||
|
# search-box-match=<regular0> <regular3> # black-on-yellow
|
||||||
|
# urls=<regular3>
|
||||||
|
|
||||||
|
[csd]
|
||||||
|
preferred=none
|
||||||
|
# size=26
|
||||||
|
# font=<primary font>
|
||||||
|
# color=<foreground color>
|
||||||
|
# hide-when-typing=no
|
||||||
|
# border-width=0
|
||||||
|
# border-color=<csd.color>
|
||||||
|
# button-width=26
|
||||||
|
# button-color=<background color>
|
||||||
|
# button-minimize-color=<regular4>
|
||||||
|
# button-maximize-color=<regular2>
|
||||||
|
# button-close-color=<regular1>
|
||||||
|
|
||||||
|
[key-bindings]
|
||||||
|
# scrollback-up-page=Shift+Page_Up
|
||||||
|
# scrollback-up-half-page=none
|
||||||
|
# scrollback-up-line=none
|
||||||
|
# scrollback-down-page=Shift+Page_Down
|
||||||
|
# scrollback-down-half-page=none
|
||||||
|
# scrollback-down-line=none
|
||||||
|
# clipboard-copy=Control+Shift+c XF86Copy
|
||||||
|
# clipboard-paste=Control+Shift+v XF86Paste
|
||||||
|
# primary-paste=Shift+Insert
|
||||||
|
# search-start=Control+Shift+r
|
||||||
|
# font-increase=Control+plus Control+equal Control+KP_Add
|
||||||
|
# font-decrease=Control+minus Control+KP_Subtract
|
||||||
|
# font-reset=Control+0 Control+KP_0
|
||||||
|
# spawn-terminal=Control+Shift+n
|
||||||
|
# minimize=none
|
||||||
|
# maximize=none
|
||||||
|
# fullscreen=none
|
||||||
|
# pipe-visible=[sh -c "xurls | fuzzel | xargs -r firefox"] none
|
||||||
|
# pipe-scrollback=[sh -c "xurls | fuzzel | xargs -r firefox"] none
|
||||||
|
# pipe-selected=[xargs -r firefox] none
|
||||||
|
# show-urls-launch=Control+Shift+u
|
||||||
|
# show-urls-copy=none
|
||||||
|
# show-urls-persistent=none
|
||||||
|
# prompt-prev=Control+Shift+z
|
||||||
|
# prompt-next=Control+Shift+x
|
||||||
|
# unicode-input=none
|
||||||
|
# noop=none
|
||||||
|
|
||||||
|
[search-bindings]
|
||||||
|
# cancel=Control+g Control+c Escape
|
||||||
|
# commit=Return
|
||||||
|
# find-prev=Control+r
|
||||||
|
# find-next=Control+s
|
||||||
|
# cursor-left=Left Control+b
|
||||||
|
# cursor-left-word=Control+Left Mod1+b
|
||||||
|
# cursor-right=Right Control+f
|
||||||
|
# cursor-right-word=Control+Right Mod1+f
|
||||||
|
# cursor-home=Home Control+a
|
||||||
|
# cursor-end=End Control+e
|
||||||
|
# delete-prev=BackSpace
|
||||||
|
# delete-prev-word=Mod1+BackSpace Control+BackSpace
|
||||||
|
# delete-next=Delete
|
||||||
|
# delete-next-word=Mod1+d Control+Delete
|
||||||
|
# extend-to-word-boundary=Control+w
|
||||||
|
# extend-to-next-whitespace=Control+Shift+w
|
||||||
|
# clipboard-paste=Control+v Control+Shift+v Control+y XF86Paste
|
||||||
|
# primary-paste=Shift+Insert
|
||||||
|
# unicode-input=none
|
||||||
|
|
||||||
|
[url-bindings]
|
||||||
|
# cancel=Control+g Control+c Control+d Escape
|
||||||
|
# toggle-url-visible=t
|
||||||
|
|
||||||
|
[text-bindings]
|
||||||
|
# \x03=Mod4+c # Map Super+c -> Ctrl+c
|
||||||
|
|
||||||
|
[mouse-bindings]
|
||||||
|
# selection-override-modifiers=Shift
|
||||||
|
# primary-paste=BTN_MIDDLE
|
||||||
|
# select-begin=BTN_LEFT
|
||||||
|
# select-begin-block=Control+BTN_LEFT
|
||||||
|
# select-extend=BTN_RIGHT
|
||||||
|
# select-extend-character-wise=Control+BTN_RIGHT
|
||||||
|
# select-word=BTN_LEFT-2
|
||||||
|
# select-word-whitespace=Control+BTN_LEFT-2
|
||||||
|
# select-row=BTN_LEFT-3
|
||||||
|
|
||||||
|
# vim: ft=dosini
|
||||||
21
Configs/foot/.config/foot/themes/catppuccin/LICENSE
Normal file
21
Configs/foot/.config/foot/themes/catppuccin/LICENSE
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2021 Catppuccin
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
32
Configs/foot/.config/foot/themes/catppuccin/README.md
Normal file
32
Configs/foot/.config/foot/themes/catppuccin/README.md
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
<h3 align="center">
|
||||||
|
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x1544_circle.png" width="100" alt="Logo"/><br/>
|
||||||
|
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/>
|
||||||
|
Catppuccin for <a href="https://codeberg.org/dnkl/foot">Foot</a>
|
||||||
|
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://github.com/catppuccin/foot/stargazers"><img src="https://img.shields.io/github/stars/catppuccin/foot?colorA=363a4f&colorB=b7bdf8&style=for-the-badge"></a>
|
||||||
|
<a href="https://github.com/catppuccin/foot/issues"><img src="https://img.shields.io/github/issues/catppuccin/foot?colorA=363a4f&colorB=f5a97f&style=for-the-badge"></a>
|
||||||
|
<a href="https://github.com/catppuccin/foot/contributors"><img src="https://img.shields.io/github/contributors/catppuccin/foot?colorA=363a4f&colorB=a6da95&style=for-the-badge"></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<img src="https://raw.githubusercontent.com/catppuccin/foot-catppuccin/main/assets/foot.png"/>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
1. Copy the contents of `catppuccin.conf` colorscheme you want into your Foot config file (usually stored at `~/.config/foot/foot.ini`)
|
||||||
|
|
||||||
|
## 💝 Thanks to
|
||||||
|
|
||||||
|
- [Pocco81](https://github.com/Pocco81)
|
||||||
|
- [crdpa](https://github.com/crdpa)
|
||||||
|
- [Thibault Andreis](https://github.com/ThibaultAndreis)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p align="center"><img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/footers/gray0_ctp_on_line.svg?sanitize=true" /></p>
|
||||||
|
<p align="center">Copyright © 2021-present <a href="https://github.com/catppuccin" target="_blank">Catppuccin Org</a>
|
||||||
|
<p align="center"><a href="https://github.com/catppuccin/catppuccin/blob/main/LICENSE"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a></p>
|
||||||
BIN
Configs/foot/.config/foot/themes/catppuccin/assets/foot.png
Normal file
BIN
Configs/foot/.config/foot/themes/catppuccin/assets/foot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 313 KiB |
|
|
@ -0,0 +1,19 @@
|
||||||
|
[colors]
|
||||||
|
foreground=c6d0f5 # Text
|
||||||
|
background=303446 # Base
|
||||||
|
regular0=51576d # Surface 1
|
||||||
|
regular1=e78284 # red
|
||||||
|
regular2=a6d189 # green
|
||||||
|
regular3=e5c890 # yellow
|
||||||
|
regular4=8caaee # blue
|
||||||
|
regular5=f4b8e4 # pink
|
||||||
|
regular6=81c8be # teal
|
||||||
|
regular7=b5bfe2 # Subtext 1
|
||||||
|
bright0=626880 # Surface 2
|
||||||
|
bright1=e78284 # red
|
||||||
|
bright2=a6d189 # green
|
||||||
|
bright3=e5c890 # yellow
|
||||||
|
bright4=8caaee # blue
|
||||||
|
bright5=f4b8e4 # pink
|
||||||
|
bright6=81c8be # teal
|
||||||
|
bright7=a5adce # Subtext 0
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
[colors]
|
||||||
|
foreground=4c4f69 # Text
|
||||||
|
background=eff1f5 # Base
|
||||||
|
regular0=5c5f77 # Subtext 1
|
||||||
|
regular1=d20f39 # red
|
||||||
|
regular2=40a02b # green
|
||||||
|
regular3=df8e1d # yellow
|
||||||
|
regular4=1e66f5 # blue
|
||||||
|
regular5=ea76cb # pink
|
||||||
|
regular6=179299 # teal
|
||||||
|
regular7=acb0be # Surface 2
|
||||||
|
bright0=6c6f85 # Subtext 0
|
||||||
|
bright1=d20f39 # red
|
||||||
|
bright2=40a02b # green
|
||||||
|
bright3=df8e1d # yellow
|
||||||
|
bright4=1e66f5 # blue
|
||||||
|
bright5=ea76cb # pink
|
||||||
|
bright6=179299 # teal
|
||||||
|
bright7=bcc0cc # Surface 1
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
[colors]
|
||||||
|
foreground=cad3f5 # Text
|
||||||
|
background=24273a # Base
|
||||||
|
regular0=494d64 # Surface 1
|
||||||
|
regular1=ed8796 # red
|
||||||
|
regular2=a6da95 # green
|
||||||
|
regular3=eed49f # yellow
|
||||||
|
regular4=8aadf4 # blue
|
||||||
|
regular5=f5bde6 # pink
|
||||||
|
regular6=8bd5ca # teal
|
||||||
|
regular7=b8c0e0 # Subtext 1
|
||||||
|
bright0=5b6078 # Surface 2
|
||||||
|
bright1=ed8796 # red
|
||||||
|
bright2=a6da95 # green
|
||||||
|
bright3=eed49f # yellow
|
||||||
|
bright4=8aadf4 # blue
|
||||||
|
bright5=f5bde6 # pink
|
||||||
|
bright6=8bd5ca # teal
|
||||||
|
bright7=a5adcb # Subtext 0
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
[colors]
|
||||||
|
foreground=cdd6f4 # Text
|
||||||
|
background=1e1e2e # Base
|
||||||
|
regular0=45475a # Surface 1
|
||||||
|
regular1=f38ba8 # red
|
||||||
|
regular2=a6e3a1 # green
|
||||||
|
regular3=f9e2af # yellow
|
||||||
|
regular4=89b4fa # blue
|
||||||
|
regular5=f5c2e7 # pink
|
||||||
|
regular6=94e2d5 # teal
|
||||||
|
regular7=bac2de # Subtext 1
|
||||||
|
bright0=585b70 # Surface 2
|
||||||
|
bright1=f38ba8 # red
|
||||||
|
bright2=a6e3a1 # green
|
||||||
|
bright3=f9e2af # yellow
|
||||||
|
bright4=89b4fa # blue
|
||||||
|
bright5=f5c2e7 # pink
|
||||||
|
bright6=94e2d5 # teal
|
||||||
|
bright7=a6adc8 # Subtext 0
|
||||||
34
Configs/foot/.config/foot/themes/catppuccin/dot_editorconfig
Normal file
34
Configs/foot/.config/foot/themes/catppuccin/dot_editorconfig
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
# EditorConfig helps developers define and maintain consistent
|
||||||
|
# coding styles between different editors and IDEs
|
||||||
|
# EditorConfig is awesome: https://EditorConfig.org
|
||||||
|
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
indent_size = 2
|
||||||
|
indent_style = space
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
|
# go
|
||||||
|
[*.go]
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
# python
|
||||||
|
[*.{ini,py,py.tpl,rst}]
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
# rust
|
||||||
|
[*.rs]
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
# documentation, utils
|
||||||
|
[*.{md,mdx,diff}]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
|
# windows shell scripts
|
||||||
|
[*.{cmd,bat,ps1}]
|
||||||
|
end_of_line = crlf
|
||||||
1
Configs/foot/.config/foot/themes/catppuccin/dot_git
Normal file
1
Configs/foot/.config/foot/themes/catppuccin/dot_git
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
gitdir: ../../../../.git/modules/config/foot/themes/catppuccin
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue