Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(readme): remove -F when setting the status line #333

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ The tmux status line modules are set as variables and prefixed with `@catppuccin
To use the `application` and `session` modules on the right and have nothing on the left:

```sh
set -gF status-right "#{E:@catpuccin_status_application}#{E:@catppuccin_status_session}"
set -g status-right "#{E:@catpuccin_status_application}#{E:@catppuccin_status_session}"
set -g status-left ""
```

Expand Down Expand Up @@ -306,11 +306,11 @@ set -g @catppuccin_date_time_text "%Y-%m-%d %H:%M:%S"
# Run catppuccin plugin manually or through tpm
# ...

set -gF status-right "#{E:@catppuccin_status_application}"
set -agF status-right "#{E:@catppuccin_status_session}"
set -agF status-right "#{E:@catppuccin_status_user}"
set -agF status-right "#{E:@catppuccin_status_host}"
set -agF status-right "#{E:@catppuccin_status_date_time}"
set -g status-right "#{E:@catppuccin_status_application}"
set -ag status-right "#{E:@catppuccin_status_session}"
set -ag status-right "#{E:@catppuccin_status_user}"
set -ag status-right "#{E:@catppuccin_status_host}"
set -ag status-right "#{E:@catppuccin_status_date_time}"
```

### Config 2
Expand Down Expand Up @@ -365,10 +365,10 @@ set -g @catppuccin_directory_text "#{pane_current_path}"
# Run catppuccin plugin manually or through tpm
# ...

set -gF status-right "#{E:@catppuccin_status_directory}"
set -agF status-right "#{E:@catppuccin_status_user}"
set -agF status-right "#{E:@catppuccin_status_host}"
set -agF status-right "#{E:@catppuccin_status_session}"
set -g status-right "#{E:@catppuccin_status_directory}"
set -ag status-right "#{E:@catppuccin_status_user}"
set -ag status-right "#{E:@catppuccin_status_host}"
set -ag status-right "#{E:@catppuccin_status_session}"
```

[style-guide]: https://github.com/catppuccin/catppuccin/blob/main/docs/style-guide.md
Expand Down
16 changes: 8 additions & 8 deletions status/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ set -g @plugin 'tmux-plugins/tmux-battery'
Add the battery module to the status modules list.

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_battery} ..."
set -ag status-right "... #{E:@catppuccin_status_battery} ..."
```

### CPU module
Expand All @@ -83,7 +83,7 @@ set -g @plugin 'tmux-plugins/tmux-cpu'
Add the cpu module to the status modules list.

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_cpu} ..."
set -ag status-right "... #{E:@catppuccin_status_cpu} ..."
```

### Weather modules
Expand Down Expand Up @@ -111,7 +111,7 @@ set -g @plugin 'xamut/tmux-weather'
Add the weather module to the status modules list:

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_weather} ..."
set -ag status-right "... #{E:@catppuccin_status_weather} ..."
```

#### tmux-clima
Expand All @@ -137,7 +137,7 @@ set -g @plugin 'vascomfnunes/tmux-clima'
Add the weather module to the status modules list.

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_clima} ..."
set -ag status-right "... #{E:@catppuccin_status_clima} ..."
```

### Load module
Expand All @@ -163,7 +163,7 @@ set -g @plugin 'jamesoff/tmux-loadavg'
Add the load module to the status modules list.

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_load} ..."
set -ag status-right "... #{E:@catppuccin_status_load} ..."
```

### Gitmux module
Expand All @@ -181,7 +181,7 @@ To install gitmux, follow the instructions in the [gitmux documentation](https:/
Add the gitmux module to the status modules list.

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_gitmux} ..."
set -ag status-right "... #{E:@catppuccin_status_gitmux} ..."
```

To customize the gitmux module, you can follow the instrucctions in the [gitmux documentation](https://github.com/arl/gitmux/blob/main/README.md#customizing) and add this line in your tmux configuration:
Expand Down Expand Up @@ -213,7 +213,7 @@ set -g @plugin 'olimorris/tmux-pomodoro-plus'
Add the pomodoro module to the status modules list.

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_pomodoro_plus} ..."
set -ag status-right "... #{E:@catppuccin_status_pomodoro_plus} ..."
```

### Kube module
Expand All @@ -237,7 +237,7 @@ set -g @plugin 'jonmosco/kube-tmux'
Add the tmux module to the status modules list.

```sh
set -g @catppuccin_status_modules_right "... #{E:@catppuccin_status_kube} ..."
set -ag status-right "... #{E:@catppuccin_status_kube} ..."
```

Optionally override the kube-tmux colors
Expand Down