@PetrolQuote:
Petrol wrote:With python icon module maybe
This looks like a really good solution, although I can't figure out how to use puticon()
ChatGPT suggests this should work (I don't know Python):
# Test
import icon
diskobj = icon.DiskObject("ram:au.log")
diskobj.tooltypes = ["BUFFER=128", "VERBOSE=YES"]
icon.PutIcon("ram:au.log")
But I just get an error "AttributeError: 'module' object has no attribute 'PutIcon'"
**Edit.
Nevermind,I got this to work:
# Test
import icon
diskobj = icon.DiskObject("ram:au.log")
diskobj.tooltypes = ["BUFFER=128", "VERBOSE=YES"]
diskobj.PutIcon("ram:au.log")
Edited by daveyw on 2025/7/31 2:03:33