Organize Drive Icons

This commit is contained in:
Mykola Grymalyuk
2024-04-01 11:36:25 -06:00
parent 83fec2952e
commit 6caabf9726
5 changed files with 4 additions and 4 deletions

View File

@@ -743,19 +743,19 @@ class Constants:
@property
def icon_path_external(self):
return self.payload_path / Path("Icon/External/.VolumeIcon.icns")
return self.payload_path / Path("Icon/DriveIcons/External/.VolumeIcon.icns")
@property
def icon_path_internal(self):
return self.payload_path / Path("Icon/Internal/.VolumeIcon.icns")
return self.payload_path / Path("Icon/DriveIcons/Internal/.VolumeIcon.icns")
@property
def icon_path_sd(self):
return self.payload_path / Path("Icon/SD-Card/.VolumeIcon.icns")
return self.payload_path / Path("Icon/DriveIcons/SD-Card/.VolumeIcon.icns")
@property
def icon_path_ssd(self):
return self.payload_path / Path("Icon/SSD/.VolumeIcon.icns")
return self.payload_path / Path("Icon/DriveIcons/SSD/.VolumeIcon.icns")
@property
def icon_path_macos_generic(self):