DEV Community

Discussion on: Beautify your Windows Terminal 🦄

Collapse
 
zakialfaridzi profile image
zakialfaridzi

Hi! love the article. But i was wondering how to change the emojis?

Collapse
 
anupa profile image
Anup Aglawe
$sl.PromptSymbols.StartSymbol = [char]::ConvertFromUtf32(0x01F984) + [char]::ConvertFromUtf32(0x0001F525) + ' '
$sl.PromptSymbols.PromptIndicator = [char]::ConvertFromUtf32(0x01F680) +[char]::ConvertFromUtf32(0x276F)
Enter fullscreen mode Exit fullscreen mode

The hexcodes (0x...) you see in this snippet represents emojis. Just google hex code of emojis you like and replace the above code.

Collapse
 
zakialfaridzi profile image
zakialfaridzi

ohh okay, thanks Anup!