Commit graph

23 commits

Author SHA1 Message Date
Jan De Dobbeleer f47da9592f feat(exit): implement pipestatus
BREAKING CHANGE: exit segment is now called status segment.

The exit keyword is now deprecated and will be removed in a future
release. Please use the status keyword instead:

```diff
"segments": {
    {
-     "type": "exit"
+     "type": "status"
    }
}
```

Additionally, the status segment configuration has changed to support
$PIPESTATUS. You can include a status template to customize the
rendering of each individual status code (supported in fish, zsh and
bash).

```json
"segments": {
    {
        "type": "status",
        "properties": {
            "status_template": "{{ if gt .Code 0 }}\uf071{{ else }}\uf00c{{ end }}",
            "status_separator": " "
        }
    }
}
```

In case no $PIPESTATUS is available, the status segment will fall back
to the exit code of the last command using the status template
for rendering.

The `{{ .Meaning }}` property has been marked as deprecated and can be
replaced with `{{ reason .Code }}`, allowing it to be reused in
cross segment templates.

resolves #4070
2023-07-24 11:46:33 +02:00
Jan De Dobbeleer c57975985f fix(font): migrate away from material icons
resolves #3818
2023-05-09 11:32:04 +02:00
Jan De Dobbeleer 9663a29fe6
feat(font): update to Nerd Font V3
BREAKING CHANGE: this deprecates support for Nerd Font V2 and
requires a compatible V3 Nerd Font. Note for users experiencing
issues with icons, update to the latest Nerd Font of your choice
2023-05-08 13:33:59 +02:00
Jul Guga 588360cce3 theme: update night-owl
- add hyperlink to open folder in file explorer
- add hyperlink to open remote UpStreamURL
2022-09-25 16:55:08 +02:00
Jul Guga ac665b6527 theme: update night-owl
- change root segment into powerline style
- change path segment into powerline style & small fixes
- change git segment colors
- add overflow
- add segments: az, cds, crystal, cf, cftarget, cmake, flutter, kotlin, lua, perl, r, swift
- add final_space
- small fixes and color changes
2022-09-23 21:34:19 +02:00
Jan De Dobbeleer 17f75fa1ff refactor(git): no leading space on branch status 2022-09-07 18:04:41 +02:00
Jan De Dobbeleer 859fd0bbef feat: add osc7 support
resolves #2515
2022-07-13 13:59:21 +02:00
evanfuture a4e8bc1b60 feat: nx segment 2022-05-27 17:52:08 +02:00
Jan De Dobbeleer ee3b1127de feat: move template to segment 2022-03-27 15:42:42 +02:00
Jan De Dobbeleer 096cb8e997 feat: remove console title style 2022-03-14 22:16:22 +01:00
Jan De Dobbeleer 86db860fe6 theme: migrate all 2022-02-03 10:44:18 +01:00
Jan De Dobbeleer f5178e8c8c feat: remove enable_hyperlink 2022-02-03 10:44:18 +01:00
Jan De Dobbeleer b816a0bf70 feat: templates for all segments 2022-02-03 10:44:18 +01:00
Victoria 5588a32434
theme(nightowl): fix diamond colors 2022-01-23 23:12:00 +01:00
Jan De Dobbeleer 29afb86e61 feat(python): virtual env in template 2021-12-04 13:13:05 +01:00
Jul Guga 68c07a7f24
theme: update night-owl
* update: theme night-owl

- Added sysinfo & php segment
- Changed java background color
- Small fixes

* theme: update night-owl

- Added sysinfo & php segment
- Changed java background color
- Small fixes
2021-11-24 13:08:51 +01:00
Jul Guga 0247b329c1 theme: update night-owl
- Added custom title bar
- Changed home & folder icon
- Changed background_template colors in git segment
- Added fetch_stash_count & fetch_worktree_count
- Changed template properties in git segment
- Added shell segment
- Changed style of the right prompt
- Added transient_prompt
2021-11-22 08:48:19 +01:00
Jan De Dobbeleer f850f3b805 feat(exit): add template properties 2021-11-15 11:39:34 +01:00
Jan De Dobbeleer 2d25c59c00 fix(git): remove Repo struct 2021-11-09 17:16:37 +01:00
Jan De Dobbeleer 7a5bccf101 fix(git): correct color templates functions 2021-11-09 13:26:59 +01:00
Jan De Dobbeleer bf16671587 refactor(git): add upstream icons 2021-11-09 13:26:59 +01:00
Jan De Dobbeleer d29a6befd9 refactor: adjust themes to new git segment properties 2021-11-09 13:26:59 +01:00
Jul Guga 224bc0a5b2
theme: night owl 2021-10-25 19:25:14 +02:00