fix: specify the color for right separator of the status modules to be the same as text bg color and fix space among windows #382
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Shellcheck | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
paths-ignore: | |
- "*.md" | |
- "assets/**" | |
push: | |
paths-ignore: | |
- "*.md" | |
- "assets/**" | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
additional_files: "catppuccin.tmux" | |
env: | |
SHELLCHECK_OPTS: "-a" |