Replies: 8 comments 11 replies
-
|
I don't know if it's still the case but I changed to fish shell way at the beginning but it broke various things because hyprland is started from bash. I'm not sure this is still the case. What I recommend is and how I solved the issue is by changing the Alacritty config to just start the shell you want to use in the terminal window. This shouldn't break anything as far as I've experienced You need to edit And add the After you install a shell you need to find the location of executable. In my case I installed fish and found the location using Hope this helps |
Beta Was this translation helpful? Give feedback.
-
|
I recently reinstalled Omarchy due to #688. I simply used the NOTE: If you use any of the Omarchy aliases, you'll need to recreate them in fish. For your reference, the existing aliases can be found in the omarchy repo under default/bash/aliases. To recreate the same aliases in fish, I created a new shell script with the following: #!/usr/bin/fish
# File system
alias --save ls='eza -lh --group-directories-first --icons=auto'
alias --save lsa='ls -a'
alias --save lt='eza --tree --level=2 --long --icons --git'
alias --save lta='lt -a'
alias --save ff="fzf --preview 'bat --style=numbers --color=always {}'"
# Directories
alias --save ..='cd ..'
alias --save ...='cd ../..'
alias --save ....='cd ../../..'
# Tools
alias --save g='git'
alias --save d='docker'
alias --save r='rails'
# Git
alias --save gcm='git commit -m'
alias --save gcam='git commit -a -m'
alias --save gcad='git commit -a --amend'Make it executable, run it once, and then you should be good to go. |
Beta Was this translation helpful? Give feedback.
-
|
Hello, |
Beta Was this translation helpful? Give feedback.
-
|
IGNORE ME (and see comments below) |
Beta Was this translation helpful? Give feedback.
-
|
Hello, i'm new to linux and omarchy and i tried to used zsh by doing this:
This is my ghostty config file: This is my zshrc file: Then if:
Bash is still my default shell but zsh is running when i open ghostty. To be honest, i don't know if this is a great way of doing things but i have the result i was looking for. If someone more experimented could give an advice on this, i'd be more than happy to learn from you ! |
Beta Was this translation helpful? Give feedback.
-
|
I tried swapping to zsh and omarchy didn't like it. I switched back to bash and even had to do some manual cleanup to get things working right again. |
Beta Was this translation helpful? Give feedback.
-
Omarchy bash -> ZshI just managed to port most of the functionality from "omarchy default bash settings" into zsh. This was a combination of several files in different places and some agent assistance. I'm not a super user yet with things like zoxide and fzf, so cant verify all functionality. The same with all bash completion modification. What I learnedOmarchy is pre configured with bash "customization"/modding. But you cant source these right into zsh, because zsh has their own syntax for the same functionality. So it was mostly asking an agent what the different bash customization meant and then looking into zsh docs finding the equivalent. |
Beta Was this translation helpful? Give feedback.
-
|
Changing to zsh and fish are getting official support |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I personally have been using the fish shell for quite some time, and I tried changing it but there is not much integration with the rest of Omarchy. Perhaps the zsh shell might be a better choice. In any case, I was wondering if anyone has tried changing the shell hoping they share some advice on how to do it.
Beta Was this translation helpful? Give feedback.
All reactions