├── Assets ├── Cursors │ ├── Linux │ │ ├── Cursor.xbm │ │ ├── Hand-2.xbm │ │ ├── Hand.xbm │ │ ├── Loading.xbm │ │ ├── XCursor-2.xbm │ │ └── XCursor.xbm │ └── Windows │ │ ├── Cursor.cur │ │ ├── Hand-2.cur │ │ ├── Hand.cur │ │ ├── Loading.cur │ │ ├── XCursor-2.cur │ │ └── XCursor.cur ├── Data │ ├── System data │ │ ├── Boot │ │ │ └── Boot.json │ │ ├── File system │ │ │ └── FS.txt │ │ └── Kernel │ │ │ └── Bugcheck.json │ ├── Terminal data │ │ └── Terminal.json │ ├── logo.txt │ └── mini_logo.txt ├── Fonts │ ├── PythonOS-BSOD.ttf │ ├── Tahoma.ttf │ └── devicons.ttf ├── Icon.ico ├── Shell │ ├── Boot │ │ ├── BIOS │ │ │ ├── Advanced-setup.png │ │ │ ├── BIOS.png │ │ │ ├── Chipset-setup.png │ │ │ ├── Exit.png │ │ │ └── Standard-setup.png │ │ ├── Bootloader │ │ │ ├── Loading 2.gif │ │ │ ├── Loading.gif │ │ │ ├── VMware.png │ │ │ ├── logon.pdn │ │ │ ├── logon.png │ │ │ ├── logon_icon.png │ │ │ ├── post-logon.png │ │ │ ├── trans-logon.png │ │ │ └── vwboot1.png │ │ └── Login │ │ │ └── Login.png │ ├── Desktop │ │ ├── Icons │ │ │ └── my_pc.png │ │ ├── Message box │ │ │ ├── Error.png │ │ │ ├── Info.png │ │ │ ├── WM_Window.png │ │ │ └── Warning.png │ │ ├── Start menu │ │ │ ├── Start_icon.png │ │ │ └── Start_menu.png │ │ ├── Taskbar │ │ │ ├── Battery.png │ │ │ ├── Clockbar.png │ │ │ ├── Internet_connected.png │ │ │ ├── Internet_warning.png │ │ │ ├── Modules_icon.png │ │ │ ├── Search_icon.png │ │ │ ├── Startbar.png │ │ │ ├── Taskbar.png │ │ │ ├── Taskbar_icons.png │ │ │ ├── Volume.png │ │ │ ├── high-battery.png │ │ │ ├── high-internet.png │ │ │ └── high-volume.png │ │ ├── Wallpapers │ │ │ ├── Blu.png │ │ │ ├── Day_bliss.png │ │ │ ├── Day_dusk.png │ │ │ ├── Moon_bliss.png │ │ │ ├── Night_bliss.png │ │ │ ├── Night_dusk.png │ │ │ ├── Space_panorama.png │ │ │ ├── Trans_test.png │ │ │ ├── build.png │ │ │ └── default.png │ │ └── under-construction.png │ ├── Icons │ │ ├── CD_icon.png │ │ ├── Folder_icon.png │ │ ├── Image_icon.png │ │ ├── Log_icon.png │ │ ├── Python_icon.png │ │ ├── Reg_icon.png │ │ ├── Text_icon.png │ │ ├── Torrent_icon.png │ │ └── Unknown_icon.png │ ├── Placeholder.png │ ├── Programs │ │ ├── Browser │ │ │ ├── Browser.png │ │ │ └── Browser_icon.png │ │ ├── Browser_icon.png │ │ ├── Calculator │ │ │ ├── Calculator_icon.png │ │ │ ├── Calculator_icon_2.png │ │ │ └── Calculator_icon_3.png │ │ ├── File manager │ │ │ ├── Back_arrow.png │ │ │ ├── Control_pane.png │ │ │ ├── DVD_disk.png │ │ │ ├── Desktop_selected.png │ │ │ ├── Desktop_unselected.png │ │ │ ├── Disk_unselected.png │ │ │ ├── Documents_selected.png │ │ │ ├── Documents_unselected.png │ │ │ ├── Downloads_selected.png │ │ │ ├── Downloads_unselected.png │ │ │ ├── File.png │ │ │ ├── File_big.png │ │ │ ├── File_manager_button.png │ │ │ ├── File_manager_button_light.png │ │ │ ├── File_manager_icon.png │ │ │ ├── Folder.png │ │ │ ├── Folder_big.png │ │ │ ├── Go_arrow.png │ │ │ ├── List_Desktop_pane.png │ │ │ ├── List_Documents_pane.png │ │ │ ├── List_Downloads_pane.png │ │ │ ├── List_pane.png │ │ │ ├── Music_unselected.png │ │ │ ├── Navigation_pane.png │ │ │ ├── Pictures_unselected.png │ │ │ ├── Selection.png │ │ │ ├── Selection_selected.png │ │ │ ├── Splash.png │ │ │ ├── System_disk.png │ │ │ ├── This_PC_selected.png │ │ │ ├── This_PC_unselected.png │ │ │ ├── Videos_unselected.png │ │ │ └── Window.png │ │ ├── Map │ │ │ ├── Map_icon.png │ │ │ ├── Splash.png │ │ │ └── Window.png │ │ ├── Terminal │ │ │ ├── DE_Splash.png │ │ │ ├── DE_Window.png │ │ │ ├── Terminal_icon.png │ │ │ ├── WM_Splash.png │ │ │ ├── WM_Window.png │ │ │ └── WM_Window_fullheight.png │ │ └── Welcome dialog │ │ │ ├── Dialog.png │ │ │ ├── Welcome_pane2.pdn │ │ │ └── Window.png │ └── Window │ │ ├── Button │ │ ├── Button2.png │ │ ├── Button_disabled.png │ │ ├── Button_hover.png │ │ └── Button_pressed.png │ │ ├── Check button │ │ ├── Checked.png │ │ └── Uncheck.png │ │ ├── Close_button.png │ │ ├── Close_button_red.png │ │ ├── Maximize_button.png │ │ ├── Maximize_button_light.png │ │ ├── Minimize_button.png │ │ ├── Minimize_button_light.png │ │ ├── Slider │ │ ├── Thumb_slider.png │ │ └── Track_slider.png │ │ └── Titlebar │ │ ├── Close_normal.png │ │ ├── Close_red.png │ │ ├── Maximize_light.png │ │ ├── Maximize_normal.png │ │ ├── Minimize_light.png │ │ ├── Minimize_normal.png │ │ └── Titlebar.png └── icon.png ├── Disk └── FS │ ├── Filesystem.bak │ ├── Filesystem.dat │ └── Filesystem.dir ├── Handbook.md ├── LICENSE ├── Libs ├── pyImage │ ├── Image.py │ └── __init__.py ├── pyLogger │ ├── Logger.py │ └── __init__.py └── pyUtils │ ├── Encoding.py │ ├── Network.py │ ├── Sintax.py │ ├── __init__.py │ ├── pyData.py │ ├── pyDatabase.py │ └── pyFetch.py ├── OS.py ├── QuickInstall.Bat ├── README.md ├── System ├── core │ ├── __init__.py │ ├── bin │ │ ├── CAT.py │ │ ├── CD.py │ │ ├── CLEAR.py │ │ ├── DIR.py │ │ ├── ECHO.py │ │ ├── MKDIR.py │ │ ├── MV.py │ │ ├── RMDIR.py │ │ ├── TOUCH.py │ │ └── __init__.py │ ├── boot.py │ ├── filesystem.py │ ├── kernel.py │ ├── registry.py │ ├── system.py │ └── tasksystem.py ├── programs │ ├── Browser │ │ ├── Browser.py │ │ └── __init__.py │ ├── Explorer.py │ ├── File_manager │ │ ├── File_manager.py │ │ └── __init__.py │ ├── Map │ │ ├── Map.py │ │ └── __init__.py │ ├── Registry │ │ ├── Registry.py │ │ └── __init__.py │ ├── Terminal │ │ ├── Commands.py │ │ ├── Terminal.py │ │ └── __init__.py │ ├── Welcome_dialog │ │ ├── Welcome.py │ │ └── __init__.py │ └── __init__.py ├── shell │ ├── Attributes │ │ ├── Draggable.py │ │ └── __init__.py │ ├── Boot │ │ ├── BIOS.py │ │ ├── Bootloader.py │ │ ├── Desktop │ │ │ ├── Desktop.py │ │ │ ├── Startmenu.py │ │ │ ├── Taskbar.py │ │ │ └── __init__.py │ │ ├── Installer.py │ │ ├── Login.py │ │ └── __init__.py │ ├── Components │ │ ├── UITextbox.py │ │ └── __init__.py │ ├── Message_box.py │ ├── Window.py │ └── __init__.py └── utils │ ├── __init__.py │ ├── colormap.py │ ├── keymap.py │ ├── utils.py │ └── vars.py └── requirements.txt /Assets/Cursors/Linux/Cursor.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Linux/Cursor.xbm -------------------------------------------------------------------------------- /Assets/Cursors/Linux/Hand-2.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Linux/Hand-2.xbm -------------------------------------------------------------------------------- /Assets/Cursors/Linux/Hand.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Linux/Hand.xbm -------------------------------------------------------------------------------- /Assets/Cursors/Linux/Loading.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Linux/Loading.xbm -------------------------------------------------------------------------------- /Assets/Cursors/Linux/XCursor-2.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Linux/XCursor-2.xbm -------------------------------------------------------------------------------- /Assets/Cursors/Linux/XCursor.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Linux/XCursor.xbm -------------------------------------------------------------------------------- /Assets/Cursors/Windows/Cursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Windows/Cursor.cur -------------------------------------------------------------------------------- /Assets/Cursors/Windows/Hand-2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Windows/Hand-2.cur -------------------------------------------------------------------------------- /Assets/Cursors/Windows/Hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Windows/Hand.cur -------------------------------------------------------------------------------- /Assets/Cursors/Windows/Loading.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Windows/Loading.cur -------------------------------------------------------------------------------- /Assets/Cursors/Windows/XCursor-2.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Windows/XCursor-2.cur -------------------------------------------------------------------------------- /Assets/Cursors/Windows/XCursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Cursors/Windows/XCursor.cur -------------------------------------------------------------------------------- /Assets/Data/System data/Boot/Boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Data/System data/Boot/Boot.json -------------------------------------------------------------------------------- /Assets/Data/System data/File system/FS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Data/System data/File system/FS.txt -------------------------------------------------------------------------------- /Assets/Data/System data/Kernel/Bugcheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Data/System data/Kernel/Bugcheck.json -------------------------------------------------------------------------------- /Assets/Data/Terminal data/Terminal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Data/Terminal data/Terminal.json -------------------------------------------------------------------------------- /Assets/Data/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Data/logo.txt -------------------------------------------------------------------------------- /Assets/Data/mini_logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Data/mini_logo.txt -------------------------------------------------------------------------------- /Assets/Fonts/PythonOS-BSOD.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Fonts/PythonOS-BSOD.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Fonts/Tahoma.ttf -------------------------------------------------------------------------------- /Assets/Fonts/devicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Fonts/devicons.ttf -------------------------------------------------------------------------------- /Assets/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Icon.ico -------------------------------------------------------------------------------- /Assets/Shell/Boot/BIOS/Advanced-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/BIOS/Advanced-setup.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/BIOS/BIOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/BIOS/BIOS.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/BIOS/Chipset-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/BIOS/Chipset-setup.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/BIOS/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/BIOS/Exit.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/BIOS/Standard-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/BIOS/Standard-setup.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/Loading 2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/Loading 2.gif -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/Loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/Loading.gif -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/VMware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/VMware.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/logon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/logon.pdn -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/logon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/logon.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/logon_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/logon_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/post-logon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/post-logon.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/trans-logon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/trans-logon.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/Bootloader/vwboot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Bootloader/vwboot1.png -------------------------------------------------------------------------------- /Assets/Shell/Boot/Login/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Boot/Login/Login.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Icons/my_pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Icons/my_pc.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Message box/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Message box/Error.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Message box/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Message box/Info.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Message box/WM_Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Message box/WM_Window.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Message box/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Message box/Warning.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Start menu/Start_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Start menu/Start_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Start menu/Start_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Start menu/Start_menu.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Battery.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Clockbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Clockbar.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Internet_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Internet_connected.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Internet_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Internet_warning.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Modules_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Modules_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Search_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Startbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Startbar.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Taskbar.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Taskbar_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Taskbar_icons.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/Volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/Volume.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/high-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/high-battery.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/high-internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/high-internet.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Taskbar/high-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Taskbar/high-volume.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Blu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Blu.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Day_bliss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Day_bliss.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Day_dusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Day_dusk.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Moon_bliss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Moon_bliss.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Night_bliss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Night_bliss.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Night_dusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Night_dusk.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Space_panorama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Space_panorama.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/Trans_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/Trans_test.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/build.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/Wallpapers/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/Wallpapers/default.png -------------------------------------------------------------------------------- /Assets/Shell/Desktop/under-construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Desktop/under-construction.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/CD_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/CD_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Folder_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Image_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Image_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Log_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Log_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Python_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Python_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Reg_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Reg_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Text_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Text_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Torrent_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Torrent_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Icons/Unknown_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Icons/Unknown_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Placeholder.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Browser/Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Browser/Browser.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Browser/Browser_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Browser/Browser_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Browser_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Browser_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Calculator/Calculator_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Calculator/Calculator_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Calculator/Calculator_icon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Calculator/Calculator_icon_2.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Calculator/Calculator_icon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Calculator/Calculator_icon_3.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Back_arrow.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Control_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Control_pane.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/DVD_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/DVD_disk.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Desktop_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Desktop_selected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Desktop_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Desktop_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Disk_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Disk_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Documents_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Documents_selected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Documents_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Documents_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Downloads_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Downloads_selected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Downloads_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Downloads_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/File.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/File_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/File_big.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/File_manager_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/File_manager_button.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/File_manager_button_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/File_manager_button_light.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/File_manager_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/File_manager_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Folder.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Folder_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Folder_big.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Go_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Go_arrow.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/List_Desktop_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/List_Desktop_pane.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/List_Documents_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/List_Documents_pane.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/List_Downloads_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/List_Downloads_pane.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/List_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/List_pane.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Music_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Music_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Navigation_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Navigation_pane.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Pictures_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Pictures_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Selection.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Selection_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Selection_selected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Splash.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/System_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/System_disk.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/This_PC_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/This_PC_selected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/This_PC_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/This_PC_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Videos_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Videos_unselected.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/File manager/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/File manager/Window.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Map/Map_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Map/Map_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Map/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Map/Splash.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Map/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Map/Window.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Terminal/DE_Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Terminal/DE_Splash.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Terminal/DE_Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Terminal/DE_Window.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Terminal/Terminal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Terminal/Terminal_icon.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Terminal/WM_Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Terminal/WM_Splash.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Terminal/WM_Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Terminal/WM_Window.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Terminal/WM_Window_fullheight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Terminal/WM_Window_fullheight.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Welcome dialog/Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Welcome dialog/Dialog.png -------------------------------------------------------------------------------- /Assets/Shell/Programs/Welcome dialog/Welcome_pane2.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Welcome dialog/Welcome_pane2.pdn -------------------------------------------------------------------------------- /Assets/Shell/Programs/Welcome dialog/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Programs/Welcome dialog/Window.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Button/Button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Button/Button2.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Button/Button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Button/Button_disabled.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Button/Button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Button/Button_hover.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Button/Button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Button/Button_pressed.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Check button/Checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Check button/Checked.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Check button/Uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Check button/Uncheck.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Close_button.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Close_button_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Close_button_red.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Maximize_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Maximize_button.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Maximize_button_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Maximize_button_light.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Minimize_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Minimize_button.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Minimize_button_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Minimize_button_light.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Slider/Thumb_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Slider/Thumb_slider.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Slider/Track_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Slider/Track_slider.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Titlebar/Close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Titlebar/Close_normal.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Titlebar/Close_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Titlebar/Close_red.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Titlebar/Maximize_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Titlebar/Maximize_light.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Titlebar/Maximize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Titlebar/Maximize_normal.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Titlebar/Minimize_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Titlebar/Minimize_light.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Titlebar/Minimize_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Titlebar/Minimize_normal.png -------------------------------------------------------------------------------- /Assets/Shell/Window/Titlebar/Titlebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/Shell/Window/Titlebar/Titlebar.png -------------------------------------------------------------------------------- /Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Assets/icon.png -------------------------------------------------------------------------------- /Disk/FS/Filesystem.bak: -------------------------------------------------------------------------------- 1 | '', (0, 287) 2 | -------------------------------------------------------------------------------- /Disk/FS/Filesystem.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Disk/FS/Filesystem.dat -------------------------------------------------------------------------------- /Disk/FS/Filesystem.dir: -------------------------------------------------------------------------------- 1 | '', (0, 287) 2 | -------------------------------------------------------------------------------- /Handbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Handbook.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/LICENSE -------------------------------------------------------------------------------- /Libs/pyImage/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyImage/Image.py -------------------------------------------------------------------------------- /Libs/pyImage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyImage/__init__.py -------------------------------------------------------------------------------- /Libs/pyLogger/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyLogger/Logger.py -------------------------------------------------------------------------------- /Libs/pyLogger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyLogger/__init__.py -------------------------------------------------------------------------------- /Libs/pyUtils/Encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyUtils/Encoding.py -------------------------------------------------------------------------------- /Libs/pyUtils/Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyUtils/Network.py -------------------------------------------------------------------------------- /Libs/pyUtils/Sintax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyUtils/Sintax.py -------------------------------------------------------------------------------- /Libs/pyUtils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyUtils/__init__.py -------------------------------------------------------------------------------- /Libs/pyUtils/pyData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyUtils/pyData.py -------------------------------------------------------------------------------- /Libs/pyUtils/pyDatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyUtils/pyDatabase.py -------------------------------------------------------------------------------- /Libs/pyUtils/pyFetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/Libs/pyUtils/pyFetch.py -------------------------------------------------------------------------------- /OS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/OS.py -------------------------------------------------------------------------------- /QuickInstall.Bat: -------------------------------------------------------------------------------- 1 | pip install -r requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/README.md -------------------------------------------------------------------------------- /System/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/core/bin/CAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/CAT.py -------------------------------------------------------------------------------- /System/core/bin/CD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/CD.py -------------------------------------------------------------------------------- /System/core/bin/CLEAR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/CLEAR.py -------------------------------------------------------------------------------- /System/core/bin/DIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/DIR.py -------------------------------------------------------------------------------- /System/core/bin/ECHO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/ECHO.py -------------------------------------------------------------------------------- /System/core/bin/MKDIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/MKDIR.py -------------------------------------------------------------------------------- /System/core/bin/MV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/MV.py -------------------------------------------------------------------------------- /System/core/bin/RMDIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/RMDIR.py -------------------------------------------------------------------------------- /System/core/bin/TOUCH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/bin/TOUCH.py -------------------------------------------------------------------------------- /System/core/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/core/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/boot.py -------------------------------------------------------------------------------- /System/core/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/filesystem.py -------------------------------------------------------------------------------- /System/core/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/kernel.py -------------------------------------------------------------------------------- /System/core/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/registry.py -------------------------------------------------------------------------------- /System/core/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/core/system.py -------------------------------------------------------------------------------- /System/core/tasksystem.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/Browser/Browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/programs/Browser/Browser.py -------------------------------------------------------------------------------- /System/programs/Browser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/Explorer.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/File_manager/File_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/programs/File_manager/File_manager.py -------------------------------------------------------------------------------- /System/programs/File_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/Map/Map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/programs/Map/Map.py -------------------------------------------------------------------------------- /System/programs/Map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/Registry/Registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/programs/Registry/Registry.py -------------------------------------------------------------------------------- /System/programs/Registry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/Terminal/Commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/programs/Terminal/Commands.py -------------------------------------------------------------------------------- /System/programs/Terminal/Terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/programs/Terminal/Terminal.py -------------------------------------------------------------------------------- /System/programs/Terminal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/Welcome_dialog/Welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/programs/Welcome_dialog/Welcome.py -------------------------------------------------------------------------------- /System/programs/Welcome_dialog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/programs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/shell/Attributes/Draggable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Attributes/Draggable.py -------------------------------------------------------------------------------- /System/shell/Attributes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/shell/Boot/BIOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Boot/BIOS.py -------------------------------------------------------------------------------- /System/shell/Boot/Bootloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Boot/Bootloader.py -------------------------------------------------------------------------------- /System/shell/Boot/Desktop/Desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Boot/Desktop/Desktop.py -------------------------------------------------------------------------------- /System/shell/Boot/Desktop/Startmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Boot/Desktop/Startmenu.py -------------------------------------------------------------------------------- /System/shell/Boot/Desktop/Taskbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Boot/Desktop/Taskbar.py -------------------------------------------------------------------------------- /System/shell/Boot/Desktop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/shell/Boot/Installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Boot/Installer.py -------------------------------------------------------------------------------- /System/shell/Boot/Login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Boot/Login.py -------------------------------------------------------------------------------- /System/shell/Boot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/shell/Components/UITextbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Components/UITextbox.py -------------------------------------------------------------------------------- /System/shell/Components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/shell/Message_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Message_box.py -------------------------------------------------------------------------------- /System/shell/Window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/shell/Window.py -------------------------------------------------------------------------------- /System/shell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /System/utils/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/utils/colormap.py -------------------------------------------------------------------------------- /System/utils/keymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/utils/keymap.py -------------------------------------------------------------------------------- /System/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/utils/utils.py -------------------------------------------------------------------------------- /System/utils/vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/System/utils/vars.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBigEye/python-os/HEAD/requirements.txt --------------------------------------------------------------------------------