
+ PowerLine prompt now shows degraded systemctl state (When Apllicable) + Get-PlexInfo notifies if PLEX creds are needed and are missing + XDG env are setup if missing on linux + vi/vim command will launch editor, but prefer vi/vim/nvim if exists + new chezmoi package: auto loading completion + new flatpak package: List and Kill commands added + new zfs package: zls command added
11 lines
No EOL
362 B
PowerShell
11 lines
No EOL
362 B
PowerShell
$local:prev = "";
|
|
zfs list -o name,used,avail,refer,canmount,mounted,mountpoint $args |
|
|
grep -v 'docker/' |
|
|
ForEach-Object {
|
|
$local:tmpPrev = $_ -replace '^(\w+(\W\w+(\W\w+)?)?).*','$1';
|
|
if( $tmpPrev -notmatch "^$prev" -and $prev -notin ('','NAME') ) {
|
|
'-----------------'
|
|
};
|
|
$prev = $tmpPrev;
|
|
$_
|
|
} |