add perm/tmp indication

Signed-off-by: Hadi <hadi@example.com>
This commit is contained in:
Hadi
2026-05-04 13:13:29 +02:00
parent 6e3beb44e1
commit 1661ec4f57
3 changed files with 30 additions and 5 deletions
+5 -4
View File
@@ -16,10 +16,11 @@ const (
)
type Device struct {
ID int
Name string
Status Status
VidPid string
ID int
Name string
Status Status
VidPid string
Permanent bool
}
func (d Device) Title() string { return d.Name }