initial push

This commit is contained in:
Pocco81 2021-11-11 13:41:32 -05:00
parent c3a6dc671e
commit 65dae84ef3
4 changed files with 64 additions and 36 deletions

View file

@ -1,49 +1,20 @@
<p align="center">
<h2 align="center">😸 Catppuccin for AwesomeApp</h2>
<h2 align="center">😸 Catppuccin for Tmux</h2>
</p>
<p align="center">Warm mid-tone dark theme to show off your vibrant self!</p>
## Gallery
> **Note:** put the images under `assets/`. If there are a bunch of them consider [creating an empty branch](https://gist.github.com/joncardasis/e6494afd538a400722545163eb2e1fa5) (e.g. `assets`) and storing them there.
<p align="center">
<img src="https://raw.githubusercontent.com/catppuccin/tmux/main/assets/ss.png"/>
</p>
## Usage
1. Clone this repository locally
2. Open the app's settings
3. Select `import theme` and browse to where you cloned Catppuccin
4. Select it
## 🙋 FAQ (optional)
- Q: **_"Where can I find the doc?"_**
A: Run `:help theme`
1. Copy the contents of `catppuccino.conf` into your Tmux config (usually stored at `~/.tmux.conf`)
2. Reload Tmux by either restarting the session or reloading it with `tmux source-file ~/.tmux.conf`
## 💝 Thanks to
- [Human](https://github.com/catppuccin)
---
# TEMPLATE INSTRUCTIONS
> **Note:** feel free to remove this section after reading it 😎
## 🐧 Usage
There are this things on GitHub called "template repositories" which you can use as blueprints for a new repo. The problem with this is that they leave a _small_ tag under the repos' name that says "generated from <template>". To avoid this follow these instructions:
1. Create the repo and leave it empty
2. Add this template as a remote: `git remote add template git@github.com:catppuccin/template.git`
3. Pull from it: `git remote pull template`
4. Delete the remote: `git remote remove template`
## 🤩 Style
- The name of the repo must be the simplest version of the app's name (e.g `nvim` instead of `NeoVim`)
- Format repo description as "<allusive emoji> Catppuccin theme for AwesomeApp"
- Add `catppuccin` to the topics.
- Uppercase meta files (e.g. `README.md`)
- Don't add health files (like `CODE_OF_CONDUCTS` or `SUPPORT`), those are organization-wide files stored [here](https://github.com/catppuccin/.github).
- Emojis are _the way_, feel free to use them as much as you want.
- [Pocco81](https://github.com/catppuccin)

View file

BIN
assets/ss.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

57
catppuccin.conf Normal file
View file

@ -0,0 +1,57 @@
# NOTE: you can use vars with $<var> and ${<var>} as long as the str is double quoted: ""
# WARNING: hex colors can't contain capital letters
# --> Catppuccin (some colors)
thm_bg="#1b1624"
thm_fg="#B9C4E3"
thm_white="#f0f0f5"
thm_black="#0E0C13"
thm_gray="#312C44"
thm_magenta="#ae9ad6"
thm_pink="#f0a8e4"
thm_red="#e28d8d"
thm_green="#add692"
thm_yellow="#f0dc89"
thm_blue="#84a5cb"
thm_orange="#e7a988"
catppuccin12="#3e4058"
# ----------------------------=== Theme ===--------------------------
# status
set -g status-position top
set -g status "on"
set -g status-bg "${thm_bg}"
set -g status-justify "left"
set -g status-left-length "100"
set -g status-right-length "100"
# messages
set -g message-style fg="${thm_white}",bg="${thm_gray}",align="centre"
set -g message-command-style fg="${thm_white}",bg="${thm_gray}",align="centre"
# panes
set -g pane-border-style fg="${thm_gray}"
set -g pane-active-border-style fg="${thm_blue}"
# windows
setw -g window-status-activity-style fg="${thm_fg}",bg="${thm_bg}",none
setw -g window-status-separator ""
setw -g window-status-style fg="${thm_fg}",bg="${thm_bg}",none
# --------=== Statusline
set -g status-left ""
set -g status-right "#[fg=$thm_pink,bg=$thm_bg,nobold,nounderscore,noitalics]#[fg=$thm_bg,bg=$thm_pink,nobold,nounderscore,noitalics] #[fg=$thm_fg,bg=$thm_gray] #W #{?client_prefix,#[fg=$thm_red],#[fg=$thm_green]}#[bg=$thm_gray]#{?client_prefix,#[bg=$thm_red],#[bg=$thm_green]}#[fg=$thm_bg] #[fg=$thm_fg,bg=$thm_gray] #S "
# current_dir
setw -g window-status-format "#[fg=$thm_bg,bg=$thm_blue] #I #[fg=$thm_fg,bg=$thm_gray] #{b:pane_current_path} "
setw -g window-status-current-format "#[fg=$thm_bg,bg=$thm_orange] #I #[fg=$thm_white,bg=$thm_bg] #{b:pane_current_path} "
# parent_dir/current_dir
# setw -g window-status-format "#[fg=colour232,bg=colour111] #I #[fg=colour222,bg=colour235] #(echo "#{pane_current_path}" | rev | cut -d'/' -f-2 | rev) "
# setw -g window-status-current-format "#[fg=colour232,bg=colour208] #I #[fg=colour255,bg=colour237] #(echo "#{pane_current_path}" | rev | cut -d'/' -f-2 | rev) "
# --------=== Modes
setw -g clock-mode-colour "${thm_blue}"
setw -g mode-style "fg=${thm_pink} bg=${catppuccin12} bold"