Skip to content

Commit

Permalink
fix(readme): remove -F when setting the status line (#333)
Browse files Browse the repository at this point in the history
Release-As: 1.0.0
  • Loading branch information
kjnsn authored Oct 1, 2024
1 parent d424a03 commit b38421f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,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 @@ -321,11 +321,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 @@ -380,10 +380,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

0 comments on commit b38421f

Please sign in to comment.