Merge pull request #100 from ElectroPerf/main
feat: Use eza to display file/folder icons in terminal
This commit is contained in:
commit
b0f2e59cd1
|
|
@ -1,5 +1,8 @@
|
|||
## Changelogs
|
||||
|
||||
## 25 Jun 2024
|
||||
- added fbdev=1 for nvidia.sh on `/etc/modprobe.d/nvidia.conf`. see here `https://wiki.hyprland.org/Nvidia/#drm-kernel-mode-setting`
|
||||
|
||||
## 26 May 2024
|
||||
- Added fzf for zsh (CTRL R to invoke FZF history)
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</div>
|
||||
|
||||
<div align="center">
|
||||
#### 👇 KOOL's Hyprland-Dots related Links 👇
|
||||
👇 KOOL's Hyprland-Dots related Links 👇
|
||||
<br/>
|
||||
</div>
|
||||
<div align="center">
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ export ZSH="$HOME/.oh-my-zsh"
|
|||
|
||||
ZSH_THEME="xiong-chiamiov-plus"
|
||||
|
||||
plugins=(
|
||||
plugins=(
|
||||
git
|
||||
archlinux
|
||||
zsh-autosuggestions
|
||||
|
|
@ -17,15 +17,19 @@ source $ZSH/oh-my-zsh.sh
|
|||
# Check archlinux plugin commands here
|
||||
# https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/archlinux
|
||||
|
||||
|
||||
# Display Pokemon-colorscripts
|
||||
# Project page: https://gitlab.com/phoneybadger/pokemon-colorscripts#on-other-distros-and-macos
|
||||
#pokemon-colorscripts --no-title -s -r
|
||||
|
||||
# Set-up icons for files/folders in terminal
|
||||
alias ls='eza -a --icons'
|
||||
alias ll='eza -al --icons'
|
||||
alias lt='eza -a --tree --level=1 --icons'
|
||||
|
||||
# Set-up FZF key bindings (CTRL R for fuzzy history finder)
|
||||
source <(fzf --zsh)
|
||||
|
||||
HISTFILE=~/.zsh_history
|
||||
HISTSIZE=10000
|
||||
SAVEHIST=10000
|
||||
setopt appendhistory
|
||||
setopt appendhistory
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@ brightnessctl
|
|||
btop
|
||||
cava
|
||||
eog
|
||||
eza
|
||||
fastfetch
|
||||
gnome-system-monitor
|
||||
mousepad
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ if [ -f "$NVEA" ]; then
|
|||
else
|
||||
printf "\n"
|
||||
printf "${YELLOW} Adding options to $NVEA..."
|
||||
sudo echo -e "options nvidia-drm modeset=1" | sudo tee -a /etc/modprobe.d/nvidia.conf 2>&1 | tee -a "$LOG"
|
||||
sudo echo -e "options nvidia_drm modeset=1 fbdev=1" | sudo tee -a /etc/modprobe.d/nvidia.conf 2>&1 | tee -a "$LOG"
|
||||
printf "\n"
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue