├── LICENSE.md ├── README.md └── weather-forecast ├── .gitignore ├── package-lock.json ├── package.json ├── public ├── backup_favicon.ico ├── fallback.ico ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.scss ├── App.test.tsx ├── App.tsx ├── actions │ └── index.ts ├── components │ ├── BootUpWindow │ │ ├── BootUpWindow.scss │ │ └── BootUpWindow.tsx │ ├── ChakraAlert │ │ └── ChakraAlert.tsx │ ├── ChakraCookies │ │ ├── ChakraCookies.scss │ │ └── ChakraCookies.tsx │ ├── ContextMenu │ │ ├── ContextMenu.scss │ │ └── ContextMenu.tsx │ ├── DailyCon │ │ ├── DailyCon.scss │ │ └── DailyCon.tsx │ ├── DailyTemps │ │ ├── DailyTemps.scss │ │ └── DailyTemps.tsx │ ├── Dock │ │ ├── Dock.scss │ │ └── Dock.tsx │ ├── DropdownComponent │ │ ├── DropdownComponent.scss │ │ └── DropdownComponent.tsx │ ├── ForecastList │ │ ├── ForecastList.scss │ │ └── ForecastList.tsx │ ├── InputField │ │ ├── InputField.scss │ │ └── InputField.tsx │ ├── NavBar │ │ ├── NavBar.scss │ │ └── NavBar.tsx │ ├── Page │ │ ├── Page.scss │ │ └── Page.tsx │ ├── QueryBoard │ │ ├── QueryBoard.scss │ │ └── QueryBoard.tsx │ ├── QueryBoardLinks │ │ ├── QueryBoardLinks.scss │ │ └── QueryBoardLinks.tsx │ ├── SelectedDayForecast │ │ ├── SelectedDayForecast.scss │ │ └── SelectedDayForecast.tsx │ ├── SelectedWeatherSlice │ │ ├── SelectedWeatherSlice.scss │ │ └── SelectedWeatherSlice.tsx │ ├── SettingsDropdown │ │ ├── SettingsDropdown.scss │ │ └── SettingsDropdown.tsx │ ├── WallpaperMenu │ │ ├── WallpaperMenu.scss │ │ └── WallpaperMenu.tsx │ ├── WeatherBoard │ │ ├── WeatherBoard.scss │ │ └── WeatherBoard.tsx │ └── Window │ │ ├── Window.scss │ │ └── Window.tsx ├── custom.d.ts ├── framer-motion.d.ts ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reducers │ └── reducer.ts ├── reportWebVitals.ts ├── resources │ ├── audio │ │ ├── bootsound.mp3 │ │ └── bootsound.wav │ ├── fonts │ │ ├── sfbold.otf │ │ ├── sflight.otf │ │ ├── sfmedium.otf │ │ ├── sfregular.otf │ │ └── sfsemibold.otf │ └── images │ │ ├── airdrop.png │ │ ├── apple.png │ │ ├── applelogo.png │ │ ├── bigsur.jpg │ │ ├── bigsurgraphic.jpg │ │ ├── catalina.jpg │ │ ├── catalina_day.jpg │ │ ├── cookies.png │ │ ├── cursor.png │ │ ├── default@2x.png │ │ ├── dome.jpg │ │ ├── fullscreen.png │ │ ├── grabbing.png │ │ ├── iridescence.jpg │ │ ├── lake.jpg │ │ ├── linkedin.png │ │ ├── mojave.jpg │ │ ├── monterey.jpg │ │ ├── paperplane.PNG │ │ ├── peak.jpg │ │ ├── pointing.png │ │ ├── preview_bigsur.jpg │ │ ├── preview_bigsurgraphic.jpg │ │ ├── preview_bigsurgraphic.webp │ │ ├── preview_catalina.jpg │ │ ├── preview_catalina.png │ │ ├── preview_catalina.webp │ │ ├── preview_dome.jpg │ │ ├── preview_dome.webp │ │ ├── preview_iridescence.jpg │ │ ├── preview_iridescence.webp │ │ ├── preview_lake.jpg │ │ ├── preview_lake.webp │ │ ├── preview_mojave.jpg │ │ ├── preview_mojave.webp │ │ ├── preview_monterey.jpg │ │ ├── preview_monterey.webp │ │ ├── preview_peak.jpg │ │ ├── preview_peak.webp │ │ ├── preview_solargrad.jpg │ │ ├── preview_solargrad.webp │ │ ├── preview_thedesert.jpg │ │ ├── preview_thedesert.webp │ │ ├── preview_ventura.jpg │ │ ├── refresh.png │ │ ├── showcase.gif │ │ ├── solargrad.jpg │ │ ├── svg │ │ ├── airdrop.svg │ │ ├── animations.svg │ │ ├── arrow.svg │ │ ├── chat.svg │ │ ├── close.svg │ │ ├── githubcat.svg │ │ ├── loading.svg │ │ ├── loading2.svg │ │ ├── location.svg │ │ ├── lock.svg │ │ ├── minimize.svg │ │ ├── notch.svg │ │ ├── search.svg │ │ ├── settings.svg │ │ ├── stretch.svg │ │ ├── tick.svg │ │ └── weather │ │ │ ├── Ash.svg │ │ │ ├── Clear.svg │ │ │ ├── Clear_day.svg │ │ │ ├── Clear_night.svg │ │ │ ├── Clouds.svg │ │ │ ├── Drizzle.svg │ │ │ ├── Dust.svg │ │ │ ├── Fog.svg │ │ │ ├── Haze.svg │ │ │ ├── Mist.svg │ │ │ ├── Rain.svg │ │ │ ├── Sand.svg │ │ │ ├── Smoke.svg │ │ │ ├── Snow.svg │ │ │ ├── Squall.svg │ │ │ ├── Thunderstorm.svg │ │ │ ├── Tornado.svg │ │ │ ├── highest.svg │ │ │ ├── humidity.svg │ │ │ ├── location.svg │ │ │ ├── lowest.svg │ │ │ ├── raindrop.png │ │ │ ├── raindrops.svg │ │ │ └── wind.svg │ │ ├── thedesert.jpg │ │ ├── ventura.jpg │ │ └── webp │ │ ├── applemusic.png │ │ ├── arcade.png │ │ ├── calculator.png │ │ ├── calculator.webp │ │ ├── calendar.png │ │ ├── calendar.webp │ │ ├── discord.png │ │ ├── finder.png │ │ ├── finder.webp │ │ ├── github.png │ │ ├── github.webp │ │ ├── netflix.png │ │ ├── photos.png │ │ ├── scalable.png │ │ ├── spotify.png │ │ ├── twitter.png │ │ ├── vscode.png │ │ ├── vscode.webp │ │ └── weather.png ├── setupTests.ts ├── types │ ├── DropdownItemType.ts │ ├── action.ts │ ├── intervalType.ts │ ├── query.ts │ ├── sortedInterval.ts │ ├── store.ts │ ├── wallpaperObjectType.ts │ └── weather.ts └── utils │ └── helpers │ ├── checkDropdown.ts │ ├── checkSettings.ts │ ├── clearStorage.ts │ ├── getDate.ts │ ├── getDropdownContent.ts │ ├── getPosition.ts │ ├── identifyDockItem.ts │ ├── inputWork.ts │ ├── nightTimes.ts │ ├── openContextMenu.ts │ ├── openWeatherApp.ts │ ├── positionWork.ts │ ├── returnColor.ts │ ├── submitInput.ts │ ├── toggleBorder.ts │ ├── toggleFullscreen.ts │ ├── toggleMinimize.ts │ ├── toggleVisibility.ts │ ├── toggleWallpaperMin.ts │ ├── toggleWallpaperVis.ts │ ├── updateSysColor.ts │ └── wallpapers.ts └── tsconfig.json /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/README.md -------------------------------------------------------------------------------- /weather-forecast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/.gitignore -------------------------------------------------------------------------------- /weather-forecast/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/package-lock.json -------------------------------------------------------------------------------- /weather-forecast/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/package.json -------------------------------------------------------------------------------- /weather-forecast/public/backup_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/backup_favicon.ico -------------------------------------------------------------------------------- /weather-forecast/public/fallback.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/fallback.ico -------------------------------------------------------------------------------- /weather-forecast/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/favicon.ico -------------------------------------------------------------------------------- /weather-forecast/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/index.html -------------------------------------------------------------------------------- /weather-forecast/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/logo192.png -------------------------------------------------------------------------------- /weather-forecast/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/logo512.png -------------------------------------------------------------------------------- /weather-forecast/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/manifest.json -------------------------------------------------------------------------------- /weather-forecast/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/public/robots.txt -------------------------------------------------------------------------------- /weather-forecast/src/App.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather-forecast/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/App.test.tsx -------------------------------------------------------------------------------- /weather-forecast/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/App.tsx -------------------------------------------------------------------------------- /weather-forecast/src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/actions/index.ts -------------------------------------------------------------------------------- /weather-forecast/src/components/BootUpWindow/BootUpWindow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/BootUpWindow/BootUpWindow.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/BootUpWindow/BootUpWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/BootUpWindow/BootUpWindow.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/ChakraAlert/ChakraAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/ChakraAlert/ChakraAlert.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/ChakraCookies/ChakraCookies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/ChakraCookies/ChakraCookies.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/ChakraCookies/ChakraCookies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/ChakraCookies/ChakraCookies.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/ContextMenu/ContextMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/ContextMenu/ContextMenu.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/ContextMenu/ContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/ContextMenu/ContextMenu.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/DailyCon/DailyCon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/DailyCon/DailyCon.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/DailyCon/DailyCon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/DailyCon/DailyCon.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/DailyTemps/DailyTemps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/DailyTemps/DailyTemps.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/DailyTemps/DailyTemps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/DailyTemps/DailyTemps.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/Dock/Dock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/Dock/Dock.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/Dock/Dock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/Dock/Dock.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/DropdownComponent/DropdownComponent.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/DropdownComponent/DropdownComponent.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/DropdownComponent/DropdownComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/DropdownComponent/DropdownComponent.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/ForecastList/ForecastList.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/ForecastList/ForecastList.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/ForecastList/ForecastList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/ForecastList/ForecastList.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/InputField/InputField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/InputField/InputField.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/InputField/InputField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/InputField/InputField.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/NavBar/NavBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/NavBar/NavBar.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/NavBar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/NavBar/NavBar.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/Page/Page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/Page/Page.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/Page/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/Page/Page.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/QueryBoard/QueryBoard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/QueryBoard/QueryBoard.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/QueryBoard/QueryBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/QueryBoard/QueryBoard.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/QueryBoardLinks/QueryBoardLinks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/QueryBoardLinks/QueryBoardLinks.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/QueryBoardLinks/QueryBoardLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/QueryBoardLinks/QueryBoardLinks.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/SelectedDayForecast/SelectedDayForecast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/SelectedDayForecast/SelectedDayForecast.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/SelectedDayForecast/SelectedDayForecast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/SelectedDayForecast/SelectedDayForecast.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/SelectedWeatherSlice/SelectedWeatherSlice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/SelectedWeatherSlice/SelectedWeatherSlice.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/SelectedWeatherSlice/SelectedWeatherSlice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/SelectedWeatherSlice/SelectedWeatherSlice.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/SettingsDropdown/SettingsDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/SettingsDropdown/SettingsDropdown.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/SettingsDropdown/SettingsDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/SettingsDropdown/SettingsDropdown.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/WallpaperMenu/WallpaperMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/WallpaperMenu/WallpaperMenu.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/WallpaperMenu/WallpaperMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/WallpaperMenu/WallpaperMenu.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/WeatherBoard/WeatherBoard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/WeatherBoard/WeatherBoard.scss -------------------------------------------------------------------------------- /weather-forecast/src/components/WeatherBoard/WeatherBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/WeatherBoard/WeatherBoard.tsx -------------------------------------------------------------------------------- /weather-forecast/src/components/Window/Window.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather-forecast/src/components/Window/Window.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/components/Window/Window.tsx -------------------------------------------------------------------------------- /weather-forecast/src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/custom.d.ts -------------------------------------------------------------------------------- /weather-forecast/src/framer-motion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/framer-motion.d.ts -------------------------------------------------------------------------------- /weather-forecast/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/index.css -------------------------------------------------------------------------------- /weather-forecast/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/index.tsx -------------------------------------------------------------------------------- /weather-forecast/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/logo.svg -------------------------------------------------------------------------------- /weather-forecast/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | declare module '*.mp3'; 3 | -------------------------------------------------------------------------------- /weather-forecast/src/reducers/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/reducers/reducer.ts -------------------------------------------------------------------------------- /weather-forecast/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/reportWebVitals.ts -------------------------------------------------------------------------------- /weather-forecast/src/resources/audio/bootsound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/audio/bootsound.mp3 -------------------------------------------------------------------------------- /weather-forecast/src/resources/audio/bootsound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/audio/bootsound.wav -------------------------------------------------------------------------------- /weather-forecast/src/resources/fonts/sfbold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/fonts/sfbold.otf -------------------------------------------------------------------------------- /weather-forecast/src/resources/fonts/sflight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/fonts/sflight.otf -------------------------------------------------------------------------------- /weather-forecast/src/resources/fonts/sfmedium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/fonts/sfmedium.otf -------------------------------------------------------------------------------- /weather-forecast/src/resources/fonts/sfregular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/fonts/sfregular.otf -------------------------------------------------------------------------------- /weather-forecast/src/resources/fonts/sfsemibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/fonts/sfsemibold.otf -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/airdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/airdrop.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/apple.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/applelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/applelogo.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/bigsur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/bigsur.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/bigsurgraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/bigsurgraphic.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/catalina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/catalina.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/catalina_day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/catalina_day.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/cookies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/cookies.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/cursor.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/default@2x.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/dome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/dome.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/fullscreen.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/grabbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/grabbing.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/iridescence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/iridescence.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/lake.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/linkedin.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/mojave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/mojave.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/monterey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/monterey.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/paperplane.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/paperplane.PNG -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/peak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/peak.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/pointing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/pointing.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_bigsur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_bigsur.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_bigsurgraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_bigsurgraphic.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_bigsurgraphic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_bigsurgraphic.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_catalina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_catalina.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_catalina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_catalina.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_catalina.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_catalina.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_dome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_dome.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_dome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_dome.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_iridescence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_iridescence.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_iridescence.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_iridescence.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_lake.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_lake.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_lake.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_mojave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_mojave.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_mojave.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_mojave.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_monterey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_monterey.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_monterey.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_monterey.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_peak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_peak.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_peak.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_peak.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_solargrad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_solargrad.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_solargrad.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_solargrad.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_thedesert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_thedesert.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_thedesert.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_thedesert.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/preview_ventura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/preview_ventura.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/refresh.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/showcase.gif -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/solargrad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/solargrad.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/airdrop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/airdrop.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/animations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/animations.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/arrow.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/chat.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/close.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/githubcat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/githubcat.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/loading.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/loading2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/loading2.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/location.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/lock.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/minimize.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/notch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/notch.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/search.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/settings.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/stretch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/stretch.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/tick.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Ash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Ash.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Clear.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Clear_day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Clear_day.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Clear_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Clear_night.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Clouds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Clouds.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Drizzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Drizzle.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Dust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Dust.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Fog.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Haze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Haze.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Mist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Mist.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Rain.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Sand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Sand.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Smoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Smoke.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Snow.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Squall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Squall.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Thunderstorm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Thunderstorm.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/Tornado.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/Tornado.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/highest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/highest.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/humidity.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/location.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/lowest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/lowest.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/raindrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/raindrop.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/raindrops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/raindrops.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/svg/weather/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/svg/weather/wind.svg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/thedesert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/thedesert.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/ventura.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/ventura.jpg -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/applemusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/applemusic.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/arcade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/arcade.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/calculator.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/calculator.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/calculator.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/calendar.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/calendar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/calendar.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/discord.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/finder.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/finder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/finder.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/github.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/github.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/github.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/netflix.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/photos.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/scalable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/scalable.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/spotify.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/twitter.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/vscode.png -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/vscode.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/vscode.webp -------------------------------------------------------------------------------- /weather-forecast/src/resources/images/webp/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/resources/images/webp/weather.png -------------------------------------------------------------------------------- /weather-forecast/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/setupTests.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/DropdownItemType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/DropdownItemType.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/action.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/intervalType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/intervalType.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/query.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/sortedInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/sortedInterval.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/store.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/wallpaperObjectType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/wallpaperObjectType.ts -------------------------------------------------------------------------------- /weather-forecast/src/types/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/types/weather.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/checkDropdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/checkDropdown.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/checkSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/checkSettings.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/clearStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/clearStorage.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/getDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/getDate.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/getDropdownContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/getDropdownContent.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/getPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/getPosition.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/identifyDockItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/identifyDockItem.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/inputWork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/inputWork.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/nightTimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/nightTimes.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/openContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/openContextMenu.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/openWeatherApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/openWeatherApp.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/positionWork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/positionWork.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/returnColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/returnColor.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/submitInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/submitInput.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/toggleBorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/toggleBorder.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/toggleFullscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/toggleFullscreen.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/toggleMinimize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/toggleMinimize.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/toggleVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/toggleVisibility.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/toggleWallpaperMin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/toggleWallpaperMin.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/toggleWallpaperVis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/toggleWallpaperVis.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/updateSysColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/updateSysColor.ts -------------------------------------------------------------------------------- /weather-forecast/src/utils/helpers/wallpapers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/src/utils/helpers/wallpapers.ts -------------------------------------------------------------------------------- /weather-forecast/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gianlucajahn/macOS-react/HEAD/weather-forecast/tsconfig.json --------------------------------------------------------------------------------