mirror of
https://github.com/TheUltimateHacker/shiftos-next.git
synced 2025-01-22 16:42:14 +00:00
ccdbbbed18
Yay! ShiftOS Next can finally be Shifted! Yes, that's true. I've added basic skinning to the Basic Window Manager. Currently, the only way to get to it is by typing "open shifter" in the Terminal, and the Shifter will open. Choose the settings you want and hit Apply! This is also the Alpha 3 commit, so after this I'll make the next release.
22 lines
645 B
VB.net
22 lines
645 B
VB.net
Module filesystem
|
|
'This module represents the folder structure of the ShiftFS Filesystem.
|
|
|
|
Public root As String = "C:\ShiftOS"
|
|
|
|
Public home As String = root + "\Home\" 'Inconsistent to fix terminal glitch.
|
|
|
|
Public documents As String = home + "Documents\"
|
|
Public pictures As String = home + "Pictures\"
|
|
Public music As String = home + "Music\"
|
|
|
|
Public systemdir As String = root + "\Shiftum42\"
|
|
|
|
Public drivers As String = systemdir + "Drivers\"
|
|
Public skindir As String = systemdir + "Skins\"
|
|
|
|
Public bwmskin As String = skindir + "BWM\"
|
|
|
|
Public save As String = drivers + "HDD.dri"
|
|
|
|
|
|
End Module
|