mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 18:20:13 +01:00
30 lines
895 B
Bash
30 lines
895 B
Bash
# If you come from bash you might have to change your $PATH.
|
|
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
|
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
ZSH_THEME="agnosterzak"
|
|
|
|
plugins=(
|
|
git
|
|
zsh-autosuggestions
|
|
zsh-syntax-highlighting
|
|
)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
# Display Pokemon-colorscripts
|
|
# Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos
|
|
#pokemon-colorscripts --no-title -s -r #without fastfetch
|
|
#pokemon-colorscripts --no-title -s -r | fastfetch -c $HOME/.config/fastfetch/config-pokemon.jsonc --logo-type file-raw --logo-height 10 --logo-width 5 --logo -
|
|
|
|
# fastfetch. Will be disabled if above colorscript was chosen to install
|
|
fastfetch -c $HOME/.config/fastfetch/config-compact.jsonc
|
|
|
|
# Set-up icons for files/folders in terminal using eza
|
|
alias ls='eza -a --icons'
|
|
alias ll='eza -al --icons'
|
|
alias lt='eza -a --tree --level=1 --icons'
|
|
|