├── .gitignore ├── Changelog ├── Docs ├── Api.md ├── Basics.md ├── Configuration.md ├── Landing.md ├── Showcase │ └── Landing.md ├── Tutorials │ ├── Landing.md │ ├── Layout.md │ └── Widgets.md └── Widgets │ ├── Plain1-aviyal.md │ ├── Plain1-glaze.md │ ├── Plain1-komorebi.md │ ├── TaskbarApps.md │ └── Wallpapers.md ├── Imgs ├── Screenshot 2025-07-14 182909.png ├── autumn.png ├── explorer_fi1Oz9MPqd.gif └── win98.png ├── LICENSE ├── README.md ├── Scripts └── createRelease.ps1 ├── Src ├── AssemblyInfo.cs ├── Classes │ ├── Api │ │ ├── Api.cs │ │ ├── Audio.cs │ │ ├── AviyalWM.cs │ │ ├── Clocks.cs │ │ ├── Counters.cs │ │ ├── CustomWindows.cs │ │ ├── Events.cs │ │ ├── GlazeWM.cs │ │ ├── KomorebiWM.cs │ │ ├── LaunchApps.cs │ │ ├── Menus.cs │ │ ├── System.cs │ │ ├── SystemTray.cs │ │ ├── Taskbar.cs │ │ ├── ToggleTaskbar.cs │ │ ├── Utilities.cs │ │ ├── WindowCatcher.cs │ │ └── WindowTracker.cs │ ├── Com │ │ ├── CLSID.cs │ │ ├── Enums.cs │ │ ├── Interfaces.cs │ │ └── Structs.cs │ ├── Config │ │ ├── Config.cs │ │ ├── Layout.cs │ │ └── Paths.cs │ ├── Engine │ │ ├── Widget.cs │ │ └── WidgetEngine.cs │ ├── Hooks │ │ └── minhook │ │ │ ├── hooker.cs │ │ │ ├── hookerInjector.cs │ │ │ └── target.cs │ ├── Sambar.cs │ ├── Schemas │ │ └── GlazeSchemas.cs │ ├── Ui │ │ ├── ImageSelector.cs │ │ ├── RoundedButton.cs │ │ └── StackPanel.cs │ ├── Utils │ │ ├── Core.cs │ │ ├── Extensions.cs │ │ └── Logger.cs │ └── Win32 │ │ ├── Delegates.cs │ │ ├── Enums.cs │ │ ├── Functions.cs │ │ └── Structs.cs ├── Main.cs ├── Properties │ └── launchSettings.json ├── Tests │ ├── CTaskListWnd_CreateInstance.cpp │ ├── Interceptor.cs │ ├── QueryPdb.cs │ ├── QueryPdb.runtimeconfig.json │ ├── Taskbar.pdb │ ├── TaskbarWindows.cs │ ├── main.cpp │ └── ntquery.c ├── WidgetPacks │ ├── .init.cs │ ├── Base │ │ ├── .config.cs │ │ ├── .layout.cs │ │ ├── .theme.cs │ │ ├── AudioInformation.widget.cs │ │ ├── AudioVisualizer.widget.cs │ │ ├── AviyalWorkspaces.widget.cs │ │ ├── Clock.widget.cs │ │ ├── Counters.widget.cs │ │ ├── HideTaskbar.widget.cs │ │ ├── KomorebiWorkspaces.widget.cs │ │ ├── NetworkManager.widget.cs │ │ ├── ScribblePad.widget.cs │ │ ├── StartButton.widget.cs │ │ ├── TaskbarApps.widget.cs │ │ ├── Tray.widget.cs │ │ ├── Wallpapers.widget.cs │ │ ├── Workspaces.widget.cs │ │ └── assets │ │ │ ├── arrow_down.svg │ │ │ ├── image.svg │ │ │ ├── start.svg │ │ │ └── wifi.svg │ ├── Islands │ │ ├── .config.cs │ │ ├── .imports.cs │ │ ├── .layout.cs │ │ ├── .theme.cs │ │ ├── ActionCenter.widget.cs │ │ ├── Clock.mod.cs │ │ ├── Counters.mod.cs │ │ └── Workspaces.mod.cs │ ├── Plain1-aviyal │ │ ├── .config.cs │ │ ├── .imports.cs │ │ ├── .layout.cs │ │ └── .theme.cs │ ├── Plain1-glaze │ │ ├── .config.cs │ │ ├── .imports.cs │ │ ├── .layout.cs │ │ └── .theme.cs │ ├── Plain1-komorebi │ │ ├── .config.cs │ │ ├── .imports.cs │ │ ├── .layout.cs │ │ └── .theme.cs │ ├── Transparent │ │ ├── .config.cs │ │ ├── .imports.cs │ │ ├── .layout.cs │ │ └── .theme.cs │ └── Windows98 │ │ ├── .config.cs │ │ ├── .imports.cs │ │ ├── .layout.cs │ │ ├── .theme.cs │ │ ├── Clock.mod.cs │ │ ├── Counters.mod.cs │ │ ├── NetworkManager.mod.cs │ │ ├── StartButton.widget.cs │ │ ├── TaskbarApps.mod.cs │ │ ├── Tray.mod.cs │ │ ├── Wallpapers.mod.cs │ │ ├── Workspaces.widget.cs │ │ └── assets │ │ ├── tray_apps.ico │ │ ├── wallpaper.ico │ │ ├── wifi.ico │ │ └── windows.ico └── sambar.csproj └── Todo └── Bugs.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Changelog -------------------------------------------------------------------------------- /Docs/Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Api.md -------------------------------------------------------------------------------- /Docs/Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Basics.md -------------------------------------------------------------------------------- /Docs/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Configuration.md -------------------------------------------------------------------------------- /Docs/Landing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Landing.md -------------------------------------------------------------------------------- /Docs/Showcase/Landing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docs/Tutorials/Landing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Tutorials/Landing.md -------------------------------------------------------------------------------- /Docs/Tutorials/Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Tutorials/Layout.md -------------------------------------------------------------------------------- /Docs/Tutorials/Widgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Tutorials/Widgets.md -------------------------------------------------------------------------------- /Docs/Widgets/Plain1-aviyal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Widgets/Plain1-aviyal.md -------------------------------------------------------------------------------- /Docs/Widgets/Plain1-glaze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Widgets/Plain1-glaze.md -------------------------------------------------------------------------------- /Docs/Widgets/Plain1-komorebi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Widgets/Plain1-komorebi.md -------------------------------------------------------------------------------- /Docs/Widgets/TaskbarApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Widgets/TaskbarApps.md -------------------------------------------------------------------------------- /Docs/Widgets/Wallpapers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Docs/Widgets/Wallpapers.md -------------------------------------------------------------------------------- /Imgs/Screenshot 2025-07-14 182909.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Imgs/Screenshot 2025-07-14 182909.png -------------------------------------------------------------------------------- /Imgs/autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Imgs/autumn.png -------------------------------------------------------------------------------- /Imgs/explorer_fi1Oz9MPqd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Imgs/explorer_fi1Oz9MPqd.gif -------------------------------------------------------------------------------- /Imgs/win98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Imgs/win98.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/createRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Scripts/createRelease.ps1 -------------------------------------------------------------------------------- /Src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Api.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Audio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Audio.cs -------------------------------------------------------------------------------- /Src/Classes/Api/AviyalWM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/AviyalWM.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Clocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Clocks.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Counters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Counters.cs -------------------------------------------------------------------------------- /Src/Classes/Api/CustomWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/CustomWindows.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Events.cs -------------------------------------------------------------------------------- /Src/Classes/Api/GlazeWM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/GlazeWM.cs -------------------------------------------------------------------------------- /Src/Classes/Api/KomorebiWM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/KomorebiWM.cs -------------------------------------------------------------------------------- /Src/Classes/Api/LaunchApps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/LaunchApps.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Menus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Menus.cs -------------------------------------------------------------------------------- /Src/Classes/Api/System.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/System.cs -------------------------------------------------------------------------------- /Src/Classes/Api/SystemTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/SystemTray.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Taskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Taskbar.cs -------------------------------------------------------------------------------- /Src/Classes/Api/ToggleTaskbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/ToggleTaskbar.cs -------------------------------------------------------------------------------- /Src/Classes/Api/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/Utilities.cs -------------------------------------------------------------------------------- /Src/Classes/Api/WindowCatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/WindowCatcher.cs -------------------------------------------------------------------------------- /Src/Classes/Api/WindowTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Api/WindowTracker.cs -------------------------------------------------------------------------------- /Src/Classes/Com/CLSID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Com/CLSID.cs -------------------------------------------------------------------------------- /Src/Classes/Com/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Com/Enums.cs -------------------------------------------------------------------------------- /Src/Classes/Com/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Com/Interfaces.cs -------------------------------------------------------------------------------- /Src/Classes/Com/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Com/Structs.cs -------------------------------------------------------------------------------- /Src/Classes/Config/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Config/Config.cs -------------------------------------------------------------------------------- /Src/Classes/Config/Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Config/Layout.cs -------------------------------------------------------------------------------- /Src/Classes/Config/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Config/Paths.cs -------------------------------------------------------------------------------- /Src/Classes/Engine/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Engine/Widget.cs -------------------------------------------------------------------------------- /Src/Classes/Engine/WidgetEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Engine/WidgetEngine.cs -------------------------------------------------------------------------------- /Src/Classes/Hooks/minhook/hooker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Hooks/minhook/hooker.cs -------------------------------------------------------------------------------- /Src/Classes/Hooks/minhook/hookerInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Hooks/minhook/hookerInjector.cs -------------------------------------------------------------------------------- /Src/Classes/Hooks/minhook/target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Hooks/minhook/target.cs -------------------------------------------------------------------------------- /Src/Classes/Sambar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Sambar.cs -------------------------------------------------------------------------------- /Src/Classes/Schemas/GlazeSchemas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Schemas/GlazeSchemas.cs -------------------------------------------------------------------------------- /Src/Classes/Ui/ImageSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Ui/ImageSelector.cs -------------------------------------------------------------------------------- /Src/Classes/Ui/RoundedButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Ui/RoundedButton.cs -------------------------------------------------------------------------------- /Src/Classes/Ui/StackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Ui/StackPanel.cs -------------------------------------------------------------------------------- /Src/Classes/Utils/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Utils/Core.cs -------------------------------------------------------------------------------- /Src/Classes/Utils/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Utils/Extensions.cs -------------------------------------------------------------------------------- /Src/Classes/Utils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Utils/Logger.cs -------------------------------------------------------------------------------- /Src/Classes/Win32/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Win32/Delegates.cs -------------------------------------------------------------------------------- /Src/Classes/Win32/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Win32/Enums.cs -------------------------------------------------------------------------------- /Src/Classes/Win32/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Win32/Functions.cs -------------------------------------------------------------------------------- /Src/Classes/Win32/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Classes/Win32/Structs.cs -------------------------------------------------------------------------------- /Src/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Main.cs -------------------------------------------------------------------------------- /Src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Properties/launchSettings.json -------------------------------------------------------------------------------- /Src/Tests/CTaskListWnd_CreateInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/CTaskListWnd_CreateInstance.cpp -------------------------------------------------------------------------------- /Src/Tests/Interceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/Interceptor.cs -------------------------------------------------------------------------------- /Src/Tests/QueryPdb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/QueryPdb.cs -------------------------------------------------------------------------------- /Src/Tests/QueryPdb.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/QueryPdb.runtimeconfig.json -------------------------------------------------------------------------------- /Src/Tests/Taskbar.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/Taskbar.pdb -------------------------------------------------------------------------------- /Src/Tests/TaskbarWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/TaskbarWindows.cs -------------------------------------------------------------------------------- /Src/Tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/main.cpp -------------------------------------------------------------------------------- /Src/Tests/ntquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/Tests/ntquery.c -------------------------------------------------------------------------------- /Src/WidgetPacks/.init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/.init.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/.config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/.config.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/.layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/.layout.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/.theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/.theme.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/AudioInformation.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/AudioInformation.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/AudioVisualizer.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/AudioVisualizer.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/AviyalWorkspaces.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/AviyalWorkspaces.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/Clock.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/Clock.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/Counters.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/Counters.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/HideTaskbar.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/HideTaskbar.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/KomorebiWorkspaces.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/KomorebiWorkspaces.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/NetworkManager.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/NetworkManager.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/ScribblePad.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/ScribblePad.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/StartButton.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/StartButton.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/TaskbarApps.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/TaskbarApps.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/Tray.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/Tray.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/Wallpapers.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/Wallpapers.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/Workspaces.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/Workspaces.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/assets/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/assets/arrow_down.svg -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/assets/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/assets/image.svg -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/assets/start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/assets/start.svg -------------------------------------------------------------------------------- /Src/WidgetPacks/Base/assets/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Base/assets/wifi.svg -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/.config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/.config.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/.imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/.imports.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/.layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/.layout.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/.theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/.theme.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/ActionCenter.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/ActionCenter.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/Clock.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/Clock.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/Counters.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/Counters.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Islands/Workspaces.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Islands/Workspaces.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-aviyal/.config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-aviyal/.config.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-aviyal/.imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-aviyal/.imports.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-aviyal/.layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-aviyal/.layout.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-aviyal/.theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-aviyal/.theme.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-glaze/.config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-glaze/.config.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-glaze/.imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-glaze/.imports.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-glaze/.layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-glaze/.layout.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-glaze/.theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-glaze/.theme.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-komorebi/.config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-komorebi/.config.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-komorebi/.imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-komorebi/.imports.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-komorebi/.layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-komorebi/.layout.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Plain1-komorebi/.theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Plain1-komorebi/.theme.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Transparent/.config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Transparent/.config.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Transparent/.imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Transparent/.imports.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Transparent/.layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Transparent/.layout.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Transparent/.theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Transparent/.theme.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/.config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/.config.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/.imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/.imports.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/.layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/.layout.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/.theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/.theme.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/Clock.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/Clock.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/Counters.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/Counters.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/NetworkManager.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/NetworkManager.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/StartButton.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/StartButton.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/TaskbarApps.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/TaskbarApps.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/Tray.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/Tray.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/Wallpapers.mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/Wallpapers.mod.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/Workspaces.widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/Workspaces.widget.cs -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/assets/tray_apps.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/assets/tray_apps.ico -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/assets/wallpaper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/assets/wallpaper.ico -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/assets/wifi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/assets/wifi.ico -------------------------------------------------------------------------------- /Src/WidgetPacks/Windows98/assets/windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/WidgetPacks/Windows98/assets/windows.ico -------------------------------------------------------------------------------- /Src/sambar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Src/sambar.csproj -------------------------------------------------------------------------------- /Todo/Bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAjaykrishnanR/sambar/HEAD/Todo/Bugs.md --------------------------------------------------------------------------------