]> Freerunner's - dotfiles.git/commitdiff
fish: tweak colors and update config
authorAndre Ramnitz <tux.rising@gmail.com>
Sun, 16 Jun 2024 22:23:17 +0000 (00:23 +0200)
committerAndre Ramnitz <tux.rising@gmail.com>
Sun, 18 Aug 2024 19:05:38 +0000 (21:05 +0200)
config/fish/config.fish
config/fish/functions/eza-aliases.fish

index 88a1abde50bc3f3614b75dc680f2e1722ed3a9cd..64dc20b903dce4da318b3d72a688b612e868c232 100644 (file)
@@ -3,7 +3,8 @@ if status is-interactive
     #
     #cat ~/dotfiles/banner.asc
     source ~/.config/fish/functions/eza-aliases.fish
-    fastfetch
+       set EZA_COLORS "*.patch.skip=38;5;244"
+       fastfetch
     set -g fish_greeting
 end
 
index 671677dade6536197d5ce46bad79b046dde1df4e..bd8f2a22d9783fe9695b6c0b8661fe4b92f69e43 100644 (file)
@@ -1,4 +1,5 @@
 #!/bin/fish
+
 function l1 --wraps='eza' --description='alias eza'
     switch $(tty)
         case /dev/tty**
@@ -29,9 +30,9 @@ end
 function lg --wraps='eza' --description='alias eza'
     switch $(tty)
         case /dev/tty**
-            EZA_GRID_ROWS=13 eza -w 220 --group --long --grid --group-directories-first $argv
+            EZA_GRID_ROWS=13 eza -w 220 --no-user --long --grid --group-directories-first $argv
         case /dev/pts/**
-            EZA_GRID_ROWS=26 eza -w 0 --group --long --grid --group-directories-first $argv
+            EZA_GRID_ROWS=26 eza -w 0 --no-user --long --grid --group-directories-first $argv
     end
 end