You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defunhelm-linux-disks--lsblk-with-levels ()
"Run lsblk command and annotate each line with its level."
(mapcar (lambda (raw-output)
(cons (helm-linux-disks--lsblk-get-level raw-output) raw-output))
(process-lines"sudo""lsblk""-n""-p""-o""name,mountpoint,fstype,type,size")))
the process-lines fails if the password is not cached by sudo.
I'm not sure how to fix it, but lsblk works without sudo for me (on Guix System).