mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 13:04:04 -08:00
63 lines
1.4 KiB
Plaintext
63 lines
1.4 KiB
Plaintext
---
|
|
id: linux
|
|
title: Linux
|
|
sidebar_label: 🐧 Linux
|
|
---
|
|
|
|
import Tabs from "@theme/Tabs";
|
|
import TabItem from "@theme/TabItem";
|
|
import InstallHomebrew from "./homebrew.mdx";
|
|
import Next from "./next.mdx";
|
|
|
|
## Set up your terminal
|
|
|
|
Oh My Posh uses ANSI color codes under the hood, these should work in every terminal,
|
|
but you may have to set the environment variable `$TERM` to `xterm-256color` for it to work.
|
|
|
|
:::info
|
|
To display all icons, we recommend the use of a [Nerd Font][fonts].
|
|
:::
|
|
|
|
## Installation
|
|
|
|
<Tabs
|
|
defaultValue="homebrew"
|
|
groupId="install"
|
|
values={[
|
|
{ label: 'manual', value: 'manual', },
|
|
{ label: 'homebrew', value: 'homebrew', }
|
|
]
|
|
}>
|
|
<TabItem value="manual">
|
|
|
|
Install the latest version for your system by running the following command:
|
|
|
|
```bash
|
|
curl -s https://ohmyposh.dev/install.sh | bash -s
|
|
```
|
|
|
|
By default the script will install to `/usr/local/bin` or the existing Oh My Posh executable's installation folder.
|
|
If you want to install to a different location you can specify it using the `-d` flag:
|
|
|
|
```bash
|
|
curl -s https://ohmyposh.dev/install.sh | bash -s -- -d ~/bin
|
|
```
|
|
|
|
</TabItem>
|
|
<TabItem value="homebrew">
|
|
|
|
<InstallHomebrew />
|
|
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
<Next />
|
|
|
|
[fonts]: /docs/installation/fonts
|
|
[scoop]: https://scoop.sh/
|
|
[wt]: https://github.com/microsoft/terminal
|
|
[iterm2]: https://www.iterm2.com/
|
|
[powershell]: https://www.powershellgallery.com/packages/oh-my-posh
|
|
[configuration]: /docs/configuration/overview
|
|
[themes]: /docs/themes
|