Skip to content

Starship – Cross-shell prompt

GitHub Actions workflow statusCrates.io versionPackaging status
Chat on DiscordFollow @StarshipPrompt on TwitterStand With Ukraine

ওয়েবসাইট · ইন্সটল · কনফিগ

English   Deutsch   Español   Français   Bahasa Indonesia   Italiano   日本語   Português do Brasil   Русский   Українська   Tiếng Việt   简体中文   繁體中文

WARNING

The default branch has been renamed from master to main. If you have a local clone, update it by running:

sh
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a

Starship with iTerm2 and the Snazzy theme

The minimal, blazing-fast, and infinitely customizable prompt for any shell!

  • Fast: it's fast – really really fast! 🚀
  • Customizable: configure every aspect of your prompt.
  • Universal: works on any shell, on any operating system.
  • Intelligent: shows relevant information at a glance.
  • Feature rich: support for all your favorite tools.
  • Easy: quick to install – start using it in minutes.

Explore the Starship docs  ▶

পূর্বশর্ত

পূর্বশর্ত

ধাপ ১. Starship ইন্সটল করুন

ইনস্টলেশন নির্দেশিকা দেখতে নিচের তালিকা থেকে আপনার অপারেটিং সিস্টেম বাছাই করুন:

Android

নিম্নলিখিত প্যাকেজ ম্যানেজার গুলোর মধ্যে থেকে যেকোনো একটি ব্যবহার করে Starship ইন্সটল করুন:

রিপোজিটরিনির্দেশাবলী
Termuxpkg install starship
BSD

নিম্নলিখিত প্যাকেজ ম্যানেজার গুলোর মধ্যে থেকে যেকোনো একটি ব্যবহার করে Starship ইন্সটল করুন:

ডিস্ট্রিবিউশনরিপোজিটরিনির্দেশাবলী
Anycrates.iocargo install starship --locked
FreeBSDFreshPortspkg install starship
NetBSDpkgsrcpkgin install starship
Linux

আপনার সিস্টেম এর জন্য লেটেস্ট সংস্করণটি ইন্সটল করুন:

sh
curl -sS https://starship.rs/install.sh | sh

অথবা, নিম্নলিখিত প্যাকেজ ম্যানেজার গুলোর মধ্যে থেকে যেকোনো একটি ব্যবহার করে Starship ইন্সটল করুন:

ডিস্ট্রিবিউশনরিপোজিটরিনির্দেশাবলী
Anycrates.iocargo install starship --locked
Anyconda-forgeconda install -c conda-forge starship
AnyLinuxbrewbrew install starship
Alpine Linux 3.13+Alpine Linux Packagesapk add starship
Arch LinuxArch Linux Extrapacman -S starship
CentOS 7+Coprdnf copr enable atim/starship
dnf install starship
Debian 13+Debian Mainapt install starship
Fedora 40+Coprdnf copr enable atim/starship
dnf install starship
GentooGentoo Packagesemerge app-shells/starship
Manjaropacman -S starship
NixOSnixpkgsnix-env -iA nixpkgs.starship
openSUSEOSSzypper in starship
Ubuntu 25.04+Ubuntu Universeapt install starship
Void LinuxVoid Linux Packagesxbps-install -S starship
macOS

আপনার সিস্টেম এর জন্য লেটেস্ট সংস্করণটি ইন্সটল করুন:

sh
curl -sS https://starship.rs/install.sh | sh

অথবা, নিম্নলিখিত প্যাকেজ ম্যানেজার গুলোর মধ্যে থেকে যেকোনো একটি ব্যবহার করে Starship ইন্সটল করুন:

রিপোজিটরিনির্দেশাবলী
crates.iocargo install starship --locked
conda-forgeconda install -c conda-forge starship
Homebrewbrew install starship
MacPortsport install starship
Windows

নিম্নলিখিত প্যাকেজ ম্যানেজার গুলোর মধ্যে থেকে যেকোনো একটি ব্যবহার করে Starship ইন্সটল করুন:

নিম্নলিখিত প্যাকেজ ম্যানেজার গুলোর মধ্যে থেকে যেকোনো একটি ব্যবহার করে Starship ইন্সটল করুন:

রিপোজিটরিনির্দেশাবলী
crates.iocargo install starship --locked
Chocolateychoco install starship
conda-forgeconda install -c conda-forge starship
Scoopscoop install starship
wingetwinget install --id Starship.Starship

ধাপ ২. Starship ব্যবহার করার জন্য আপনার শেল প্রস্তুত করুন

Starship চালু করতে আপনার শেল কে ঠিক মতো কনফিগার করুন । নিম্নলিখিত তালিকা থেকে আপনার শেল বাছাই করুন:

Bash

~/.bashrc এর শেষে নিম্নলিখিত লাইন টি যোগ করুন:

sh
eval "$(starship init bash)"
Cmd

You need to use Clink (v1.2.30+) with Cmd. Create a file at this path %LocalAppData%\clink\starship.lua with the following contents:

lua
load(io.popen('starship init cmd'):read("*a"))()
Elvish

Add the following to the end of ~/.config/elvish/rc.elv (%AppData%\elvish\rc.elv on Windows):

sh
eval (starship init elvish)

Note: Only Elvish v0.18+ is supported. For elvish versions prior to v0.21.0 the config file might instead be ~/.elvish/rc.elv

Fish

~/.config/fish/config.fish এর শেষে নিম্নলিখিত লাইন টি যোগ করুন:

fish
starship init fish | source
Ion

~/.config/ion/initrc এর শেষে নিম্নলিখিত লাইন টি যোগ করুন:

sh
eval $(starship init ion)
Nushell

Add the following to the end of your Nushell configuration (find it by running $nu.config-path in Nushell):

sh
mkdir ($nu.data-dir | path join "vendor/autoload")
starship init nu | save -f ($nu.data-dir | path join "vendor/autoload/starship.nu")

বিঃদ্রঃ শুধুমাত্র Nushell v0.96+ কাজ করবে ।

PowerShell

Add the following to the end of your PowerShell configuration (find it by running $PROFILE):

powershell
Invoke-Expression (&starship init powershell)
Tcsh

~/.tcshrc এর শেষে নিম্নলিখিত লাইন টি যোগ করুন:

sh
eval `starship init tcsh`
Xonsh

~/.xonshrc এর শেষে নিম্নলিখিত লাইন টি যোগ করুন:

python
execx($(starship init xonsh))
Zsh

~/.zshrc এর শেষে নিম্নলিখিত লাইন টি যোগ করুন:

sh
eval "$(starship init zsh)"

ধাপ ৩. Starship কনফিগার করুন

নতুন একটি শেল চালু করুন, এরপর আপনি আপনার সুন্দর নতুন শেল প্রম্প্ট দেখতে পাবেন । পূর্ব নির্ধারিত কনফিগ যদি ভালো লেগে থাকে, তাহলে উপভোগ করুন!

আপনি যদি Starship কে নিজের মতো করে কাস্টমাইজ করতে চান:

  • Configuration – learn how to configure Starship to tweak your prompt to your liking

  • Presets – get inspired by the pre-built configuration of others

🤝 নিজে অবদান রাখুন

We are always looking for contributors of all skill levels! If you're looking to ease your way into the project, try out a good first issue.

আপনি যদি ইংরেজি ছাড়া অন্য কোন ভাষায় সাবলীল হন, তাহলে আপনি আমাদের ডকুমেন্টেশন অনুবাদে এবং আপ-টু-ডেট রাখতে সহায়তা করতে পারেন, আমরা খুবই কৃতজ্ঞ হব । If you would like to help, translations can be contributed on the Starship Crowdin.

If you are interested in helping contribute to starship, please take a look at our Contributing Guide. Also, feel free to drop into our Discord server and say hi. 👋

💭 অনুপ্রেরণা

অনুগ্রহ করে Starship এর পূর্ববর্তী এইসব প্রোজেক্ট থেকে ঘুরে আসুন, যারা Starship তৈরিতে অনেক অনুপ্রেরণা দিয়েছে । 🙏

❤️ স্পনসর

Support this project by becoming a sponsor. আপনার নাম অথবা লোগো নিম্নে দেখা যাবে আপনার ওয়েবসাইট এর লিঙ্ক সহ ।

🔒 Code Signing Policy

Free code signing provided by SignPath.io, certificate by SignPath Foundation.

Code Signing Roles:

This program will not transfer any information to other networked systems unless specifically requested by the user or the person installing or operating it.


Starship rocket icon

📝 লাইসেন্স

Copyright © 2019-present, Starship Contributors.
This project is ISC licensed.