├── .config ├── ags │ ├── .gitignore │ ├── MigrationDocsGtk3.md │ ├── app.ts │ ├── assets │ │ └── emojis │ │ │ └── emojis.json │ ├── constants │ │ ├── api.constants.ts │ │ ├── app.constants.ts │ │ ├── date.constants.ts │ │ ├── phi.constants.ts │ │ ├── providers.data.ts │ │ ├── settings.constants.ts │ │ └── widget.constants.ts │ ├── env.d.ts │ ├── interfaces │ │ ├── api.interface.ts │ │ ├── app.interface.ts │ │ ├── chatbot.interface.ts │ │ ├── hyprlandSettings.interface.ts │ │ ├── settings.interface.ts │ │ ├── waifu.interface.ts │ │ └── widgetSelector.interface.ts │ ├── scripts │ │ ├── bandwidth.c │ │ ├── get-image-color.sh │ │ ├── get-wallpapers-thumbnails.sh │ │ ├── get-wallpapers.sh │ │ ├── search-booru.py │ │ ├── translate.sh │ │ ├── update.sh │ │ └── wallpaper-to-thumbnail.sh │ ├── scss │ │ ├── bar │ │ │ ├── bar.scss │ │ │ ├── information.scss │ │ │ ├── utilities.scss │ │ │ └── workspaces.scss │ │ ├── colors.scss │ │ ├── constants.scss │ │ ├── defaultColors.scss │ │ ├── lib.scss │ │ ├── panel │ │ │ ├── left-panel │ │ │ │ ├── components │ │ │ │ │ ├── booru.scss │ │ │ │ │ ├── chat-bot.scss │ │ │ │ │ └── custom-scripts.scss │ │ │ │ └── left-panel.scss │ │ │ ├── panel.scss │ │ │ └── right-panel │ │ │ │ ├── components │ │ │ │ ├── notification-popups.scss │ │ │ │ ├── notification.scss │ │ │ │ ├── script-timer.scss │ │ │ │ └── waifu.scss │ │ │ │ └── right-panel.scss │ │ ├── style.scss │ │ └── widgets │ │ │ ├── app-launcher.scss │ │ │ ├── calendar.scss │ │ │ ├── media-popups.scss │ │ │ ├── media-widget.scss │ │ │ ├── notification-history.scss │ │ │ ├── osd.scss │ │ │ ├── player.scss │ │ │ ├── progress.scss │ │ │ ├── resources.scss │ │ │ ├── screen-shot.scss │ │ │ ├── settings-widget.scss │ │ │ ├── update.scss │ │ │ ├── user-panel.scss │ │ │ └── wallpaper-switcher.scss │ ├── services │ │ ├── autoSwitchWorkspace.ts │ │ └── brightness.ts │ ├── tsconfig.json │ ├── utils │ │ ├── arithmetic.ts │ │ ├── color.ts │ │ ├── gcc.ts │ │ ├── icon.ts │ │ ├── image.ts │ │ ├── json.ts │ │ ├── monitor.ts │ │ ├── notification.ts │ │ ├── scss.ts │ │ ├── settings.ts │ │ ├── string.ts │ │ ├── theme.ts │ │ ├── time.ts │ │ ├── url.ts │ │ └── window.tsx │ ├── variables.ts │ └── widgets │ │ ├── AppLauncher.tsx │ │ ├── Calendar.tsx │ │ ├── CustomRevealer.tsx │ │ ├── FileChooser.tsx │ │ ├── MediaPopups.tsx │ │ ├── MediaWidget.tsx │ │ ├── NotificationPopups.tsx │ │ ├── OSD.tsx │ │ ├── Player.tsx │ │ ├── Progress.tsx │ │ ├── ScreenShot.tsx │ │ ├── SettingsWidget.tsx │ │ ├── UserPanel.tsx │ │ ├── WallpaperSwitcher.tsx │ │ ├── bar │ │ ├── Bar.tsx │ │ ├── BarHover.tsx │ │ └── components │ │ │ ├── Information.tsx │ │ │ ├── Utilities.tsx │ │ │ └── Workspaces.tsx │ │ ├── leftPanel │ │ ├── LeftPanel.tsx │ │ ├── LeftPanelHover.tsx │ │ └── components │ │ │ ├── BooruViewer.tsx │ │ │ ├── ChatBot.tsx │ │ │ ├── CustomScripts.tsx │ │ │ └── ImageDialog.tsx │ │ └── rightPanel │ │ ├── NotificationHistory.tsx │ │ ├── RightPanel.tsx │ │ ├── RightPanelHover.tsx │ │ └── components │ │ ├── Notification.tsx │ │ ├── ScriptTimer.tsx │ │ └── Waifu.tsx ├── aria2 │ └── aria2.conf ├── btop │ ├── .gitignore │ └── btop.conf ├── fastfetch │ ├── .gitignore │ ├── assets │ │ └── .gitkeep │ ├── config.jsonc │ └── fastfetch.sh ├── hypr │ ├── .gitignore │ ├── README_GESTURES_FIX.md │ ├── configs │ │ ├── animations.conf │ │ ├── cursor.conf │ │ ├── custom │ │ │ └── .gitkeep │ │ ├── defaults │ │ │ ├── browser.conf │ │ │ ├── discord_client.conf │ │ │ ├── exec.conf │ │ │ ├── gaps.conf │ │ │ └── workspaces.conf │ │ ├── exec.conf │ │ ├── general.conf │ │ ├── keybinds.conf │ │ ├── layer_rules.conf │ │ ├── monitors.conf │ │ ├── plugins │ │ │ ├── hyprexpo.conf │ │ │ └── hyprfocus.conf │ │ ├── shaders │ │ │ ├── colors.glsl │ │ │ └── retro.glsl │ │ ├── window_rules.conf │ │ └── workspaces.conf │ ├── evremap │ │ ├── configuration.sh │ │ ├── evremap.service │ │ └── remap.toml │ ├── hypridle.conf │ ├── hyprland.conf │ ├── hyprlock.conf │ ├── hyprpaper.conf │ ├── hyprpaper │ │ ├── auto.sh │ │ ├── config │ │ │ └── defaults.conf │ │ ├── load.sh │ │ ├── reload.sh │ │ ├── set-wallpaper.sh │ │ └── w.sh │ ├── maintenance │ │ ├── BACKUP.sh │ │ ├── CONFIGURE.sh │ │ ├── DEFAULTS.sh │ │ ├── ESSENTIALS.sh │ │ ├── INSTALL.sh │ │ ├── LOCALES.sh │ │ ├── PKGBUILD │ │ ├── PLUGINS.sh │ │ ├── SDDM.sh │ │ ├── TWEAKS.sh │ │ ├── UPDATE.sh │ │ ├── WAL.sh │ │ └── WALLPAPERS.sh │ ├── onedrive │ │ ├── .gitignore │ │ └── onedrive │ ├── pacman │ │ ├── check-pkglist.sh │ │ ├── install-pkgs.sh │ │ └── pkglist.txt │ ├── scripts-c │ │ ├── battery-loop.c │ │ ├── posture-loop.c │ │ └── updates-loop.c │ ├── scripts │ │ ├── bar.sh │ │ ├── change-resolution.sh │ │ ├── clipboard-monitor.sh │ │ ├── compile-run-binaries.sh │ │ ├── dvorak-qwerty.sh │ │ ├── figlet-formater.sh │ │ ├── hyprlock.sh │ │ ├── screenshot.sh │ │ ├── test-connection.sh │ │ └── wallpaper-reduce.sh │ └── theme │ │ └── scripts │ │ ├── border-theme.sh │ │ ├── cursor-theme.sh │ │ ├── gtk-theme.sh │ │ ├── set-global-theme.sh │ │ ├── system-theme.sh │ │ └── wal-theme.sh ├── kitty │ └── kitty.conf ├── lsfg-vk │ └── conf.toml ├── pipewire │ └── pipewire.conf.d │ │ └── pipewire.conf ├── ranger │ └── rc.conf ├── starship.toml ├── wallpapers │ ├── .gitignore │ ├── custom │ │ └── .gitkeep │ └── lockscreen │ │ └── wallpaper └── wayvnc │ └── config ├── .gitignore ├── .icons ├── default │ └── index.theme ├── theme_phinger-cursors-dark │ ├── cursors │ │ ├── alias.hlc │ │ ├── all-scroll.hlc │ │ ├── cell.hlc │ │ ├── col-resize.hlc │ │ ├── context-menu.hlc │ │ ├── copy.hlc │ │ ├── crosshair.hlc │ │ ├── default.hlc │ │ ├── down.hlc │ │ ├── e-resize.hlc │ │ ├── ew-resize.hlc │ │ ├── grab.hlc │ │ ├── grabbing.hlc │ │ ├── help.hlc │ │ ├── left.hlc │ │ ├── middle_finger.hlc │ │ ├── move.hlc │ │ ├── n-resize.hlc │ │ ├── ne-resize.hlc │ │ ├── nesw-resize.hlc │ │ ├── no-drop.hlc │ │ ├── not-allowed.hlc │ │ ├── ns-resize.hlc │ │ ├── nw-resize.hlc │ │ ├── nwse-resize.hlc │ │ ├── pen.hlc │ │ ├── pencil.hlc │ │ ├── pipette.hlc │ │ ├── pointer.hlc │ │ ├── progress.hlc │ │ ├── right.hlc │ │ ├── rock_and_roll.hlc │ │ ├── row-resize.hlc │ │ ├── s-resize.hlc │ │ ├── se-resize.hlc │ │ ├── skull.hlc │ │ ├── sw-resize.hlc │ │ ├── text.hlc │ │ ├── up.hlc │ │ ├── vertical-text.hlc │ │ ├── w-resize.hlc │ │ ├── wait.hlc │ │ ├── zoom-in.hlc │ │ └── zoom-out.hlc │ └── manifest.hl └── theme_phinger-cursors-light │ ├── cursors │ ├── alias.hlc │ ├── all-scroll.hlc │ ├── cell.hlc │ ├── col-resize.hlc │ ├── context-menu.hlc │ ├── copy.hlc │ ├── crosshair.hlc │ ├── default.hlc │ ├── down.hlc │ ├── e-resize.hlc │ ├── ew-resize.hlc │ ├── grab.hlc │ ├── grabbing.hlc │ ├── help.hlc │ ├── left.hlc │ ├── middle_finger.hlc │ ├── move.hlc │ ├── n-resize.hlc │ ├── ne-resize.hlc │ ├── nesw-resize.hlc │ ├── no-drop.hlc │ ├── not-allowed.hlc │ ├── ns-resize.hlc │ ├── nw-resize.hlc │ ├── nwse-resize.hlc │ ├── pen.hlc │ ├── pencil.hlc │ ├── pipette.hlc │ ├── pointer.hlc │ ├── progress.hlc │ ├── right.hlc │ ├── rock_and_roll.hlc │ ├── row-resize.hlc │ ├── s-resize.hlc │ ├── se-resize.hlc │ ├── skull.hlc │ ├── sw-resize.hlc │ ├── text.hlc │ ├── up.hlc │ ├── vertical-text.hlc │ ├── w-resize.hlc │ ├── wait.hlc │ ├── zoom-in.hlc │ └── zoom-out.hlc │ └── manifest.hl ├── .zshrc ├── LICENSE └── README.md /.config/ags/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/.gitignore -------------------------------------------------------------------------------- /.config/ags/MigrationDocsGtk3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/MigrationDocsGtk3.md -------------------------------------------------------------------------------- /.config/ags/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/app.ts -------------------------------------------------------------------------------- /.config/ags/assets/emojis/emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/assets/emojis/emojis.json -------------------------------------------------------------------------------- /.config/ags/constants/api.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/constants/api.constants.ts -------------------------------------------------------------------------------- /.config/ags/constants/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/constants/app.constants.ts -------------------------------------------------------------------------------- /.config/ags/constants/date.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/constants/date.constants.ts -------------------------------------------------------------------------------- /.config/ags/constants/phi.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/constants/phi.constants.ts -------------------------------------------------------------------------------- /.config/ags/constants/providers.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/constants/providers.data.ts -------------------------------------------------------------------------------- /.config/ags/constants/settings.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/constants/settings.constants.ts -------------------------------------------------------------------------------- /.config/ags/constants/widget.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/constants/widget.constants.ts -------------------------------------------------------------------------------- /.config/ags/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/env.d.ts -------------------------------------------------------------------------------- /.config/ags/interfaces/api.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/interfaces/api.interface.ts -------------------------------------------------------------------------------- /.config/ags/interfaces/app.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/interfaces/app.interface.ts -------------------------------------------------------------------------------- /.config/ags/interfaces/chatbot.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/interfaces/chatbot.interface.ts -------------------------------------------------------------------------------- /.config/ags/interfaces/hyprlandSettings.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/interfaces/hyprlandSettings.interface.ts -------------------------------------------------------------------------------- /.config/ags/interfaces/settings.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/interfaces/settings.interface.ts -------------------------------------------------------------------------------- /.config/ags/interfaces/waifu.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/interfaces/waifu.interface.ts -------------------------------------------------------------------------------- /.config/ags/interfaces/widgetSelector.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/interfaces/widgetSelector.interface.ts -------------------------------------------------------------------------------- /.config/ags/scripts/bandwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/bandwidth.c -------------------------------------------------------------------------------- /.config/ags/scripts/get-image-color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/get-image-color.sh -------------------------------------------------------------------------------- /.config/ags/scripts/get-wallpapers-thumbnails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/get-wallpapers-thumbnails.sh -------------------------------------------------------------------------------- /.config/ags/scripts/get-wallpapers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/get-wallpapers.sh -------------------------------------------------------------------------------- /.config/ags/scripts/search-booru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/search-booru.py -------------------------------------------------------------------------------- /.config/ags/scripts/translate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/translate.sh -------------------------------------------------------------------------------- /.config/ags/scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/update.sh -------------------------------------------------------------------------------- /.config/ags/scripts/wallpaper-to-thumbnail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scripts/wallpaper-to-thumbnail.sh -------------------------------------------------------------------------------- /.config/ags/scss/bar/bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/bar/bar.scss -------------------------------------------------------------------------------- /.config/ags/scss/bar/information.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/bar/information.scss -------------------------------------------------------------------------------- /.config/ags/scss/bar/utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/bar/utilities.scss -------------------------------------------------------------------------------- /.config/ags/scss/bar/workspaces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/bar/workspaces.scss -------------------------------------------------------------------------------- /.config/ags/scss/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/colors.scss -------------------------------------------------------------------------------- /.config/ags/scss/constants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/constants.scss -------------------------------------------------------------------------------- /.config/ags/scss/defaultColors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/defaultColors.scss -------------------------------------------------------------------------------- /.config/ags/scss/lib.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/lib.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/left-panel/components/booru.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/left-panel/components/booru.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/left-panel/components/chat-bot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/left-panel/components/chat-bot.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/left-panel/components/custom-scripts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/left-panel/components/custom-scripts.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/left-panel/left-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/left-panel/left-panel.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/panel.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/right-panel/components/notification-popups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/right-panel/components/notification-popups.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/right-panel/components/notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/right-panel/components/notification.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/right-panel/components/script-timer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/right-panel/components/script-timer.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/right-panel/components/waifu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/right-panel/components/waifu.scss -------------------------------------------------------------------------------- /.config/ags/scss/panel/right-panel/right-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/panel/right-panel/right-panel.scss -------------------------------------------------------------------------------- /.config/ags/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/style.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/app-launcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/app-launcher.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/calendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/calendar.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/media-popups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/media-popups.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/media-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/media-widget.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/notification-history.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/notification-history.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/osd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/osd.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/player.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/progress.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/resources.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/resources.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/screen-shot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/screen-shot.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/settings-widget.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/settings-widget.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/update.scss: -------------------------------------------------------------------------------- 1 | .update-widget { 2 | @extend .module; 3 | padding: 10px; 4 | } 5 | -------------------------------------------------------------------------------- /.config/ags/scss/widgets/user-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/user-panel.scss -------------------------------------------------------------------------------- /.config/ags/scss/widgets/wallpaper-switcher.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/scss/widgets/wallpaper-switcher.scss -------------------------------------------------------------------------------- /.config/ags/services/autoSwitchWorkspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/services/autoSwitchWorkspace.ts -------------------------------------------------------------------------------- /.config/ags/services/brightness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/services/brightness.ts -------------------------------------------------------------------------------- /.config/ags/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/tsconfig.json -------------------------------------------------------------------------------- /.config/ags/utils/arithmetic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/arithmetic.ts -------------------------------------------------------------------------------- /.config/ags/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/color.ts -------------------------------------------------------------------------------- /.config/ags/utils/gcc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/gcc.ts -------------------------------------------------------------------------------- /.config/ags/utils/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/icon.ts -------------------------------------------------------------------------------- /.config/ags/utils/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/image.ts -------------------------------------------------------------------------------- /.config/ags/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/json.ts -------------------------------------------------------------------------------- /.config/ags/utils/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/monitor.ts -------------------------------------------------------------------------------- /.config/ags/utils/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/notification.ts -------------------------------------------------------------------------------- /.config/ags/utils/scss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/scss.ts -------------------------------------------------------------------------------- /.config/ags/utils/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/settings.ts -------------------------------------------------------------------------------- /.config/ags/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/string.ts -------------------------------------------------------------------------------- /.config/ags/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/theme.ts -------------------------------------------------------------------------------- /.config/ags/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/time.ts -------------------------------------------------------------------------------- /.config/ags/utils/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/url.ts -------------------------------------------------------------------------------- /.config/ags/utils/window.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/utils/window.tsx -------------------------------------------------------------------------------- /.config/ags/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/variables.ts -------------------------------------------------------------------------------- /.config/ags/widgets/AppLauncher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/AppLauncher.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/Calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/Calendar.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/CustomRevealer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/CustomRevealer.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/FileChooser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/FileChooser.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/MediaPopups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/MediaPopups.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/MediaWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/MediaWidget.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/NotificationPopups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/NotificationPopups.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/OSD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/OSD.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/Player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/Player.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/Progress.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/ScreenShot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/ScreenShot.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/SettingsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/SettingsWidget.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/UserPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/UserPanel.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/WallpaperSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/WallpaperSwitcher.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/bar/Bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/bar/Bar.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/bar/BarHover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/bar/BarHover.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/bar/components/Information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/bar/components/Information.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/bar/components/Utilities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/bar/components/Utilities.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/bar/components/Workspaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/bar/components/Workspaces.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/leftPanel/LeftPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/leftPanel/LeftPanel.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/leftPanel/LeftPanelHover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/leftPanel/LeftPanelHover.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/leftPanel/components/BooruViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/leftPanel/components/BooruViewer.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/leftPanel/components/ChatBot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/leftPanel/components/ChatBot.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/leftPanel/components/CustomScripts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/leftPanel/components/CustomScripts.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/leftPanel/components/ImageDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/leftPanel/components/ImageDialog.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/rightPanel/NotificationHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/rightPanel/NotificationHistory.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/rightPanel/RightPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/rightPanel/RightPanel.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/rightPanel/RightPanelHover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/rightPanel/RightPanelHover.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/rightPanel/components/Notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/rightPanel/components/Notification.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/rightPanel/components/ScriptTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/rightPanel/components/ScriptTimer.tsx -------------------------------------------------------------------------------- /.config/ags/widgets/rightPanel/components/Waifu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ags/widgets/rightPanel/components/Waifu.tsx -------------------------------------------------------------------------------- /.config/aria2/aria2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/aria2/aria2.conf -------------------------------------------------------------------------------- /.config/btop/.gitignore: -------------------------------------------------------------------------------- 1 | btop.log 2 | -------------------------------------------------------------------------------- /.config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/btop/btop.conf -------------------------------------------------------------------------------- /.config/fastfetch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/fastfetch/.gitignore -------------------------------------------------------------------------------- /.config/fastfetch/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/fastfetch/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/fastfetch/config.jsonc -------------------------------------------------------------------------------- /.config/fastfetch/fastfetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/fastfetch/fastfetch.sh -------------------------------------------------------------------------------- /.config/hypr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/.gitignore -------------------------------------------------------------------------------- /.config/hypr/README_GESTURES_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/README_GESTURES_FIX.md -------------------------------------------------------------------------------- /.config/hypr/configs/animations.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/animations.conf -------------------------------------------------------------------------------- /.config/hypr/configs/cursor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/cursor.conf -------------------------------------------------------------------------------- /.config/hypr/configs/custom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/hypr/configs/defaults/browser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/defaults/browser.conf -------------------------------------------------------------------------------- /.config/hypr/configs/defaults/discord_client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/defaults/discord_client.conf -------------------------------------------------------------------------------- /.config/hypr/configs/defaults/exec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/defaults/exec.conf -------------------------------------------------------------------------------- /.config/hypr/configs/defaults/gaps.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/defaults/gaps.conf -------------------------------------------------------------------------------- /.config/hypr/configs/defaults/workspaces.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/defaults/workspaces.conf -------------------------------------------------------------------------------- /.config/hypr/configs/exec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/exec.conf -------------------------------------------------------------------------------- /.config/hypr/configs/general.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/general.conf -------------------------------------------------------------------------------- /.config/hypr/configs/keybinds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/keybinds.conf -------------------------------------------------------------------------------- /.config/hypr/configs/layer_rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/layer_rules.conf -------------------------------------------------------------------------------- /.config/hypr/configs/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/monitors.conf -------------------------------------------------------------------------------- /.config/hypr/configs/plugins/hyprexpo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/plugins/hyprexpo.conf -------------------------------------------------------------------------------- /.config/hypr/configs/plugins/hyprfocus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/plugins/hyprfocus.conf -------------------------------------------------------------------------------- /.config/hypr/configs/shaders/colors.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/shaders/colors.glsl -------------------------------------------------------------------------------- /.config/hypr/configs/shaders/retro.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/shaders/retro.glsl -------------------------------------------------------------------------------- /.config/hypr/configs/window_rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/window_rules.conf -------------------------------------------------------------------------------- /.config/hypr/configs/workspaces.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/configs/workspaces.conf -------------------------------------------------------------------------------- /.config/hypr/evremap/configuration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/evremap/configuration.sh -------------------------------------------------------------------------------- /.config/hypr/evremap/evremap.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/evremap/evremap.service -------------------------------------------------------------------------------- /.config/hypr/evremap/remap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/evremap/remap.toml -------------------------------------------------------------------------------- /.config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hypridle.conf -------------------------------------------------------------------------------- /.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper/auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprpaper/auto.sh -------------------------------------------------------------------------------- /.config/hypr/hyprpaper/config/defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprpaper/config/defaults.conf -------------------------------------------------------------------------------- /.config/hypr/hyprpaper/load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprpaper/load.sh -------------------------------------------------------------------------------- /.config/hypr/hyprpaper/reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprpaper/reload.sh -------------------------------------------------------------------------------- /.config/hypr/hyprpaper/set-wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprpaper/set-wallpaper.sh -------------------------------------------------------------------------------- /.config/hypr/hyprpaper/w.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/hyprpaper/w.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/BACKUP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/BACKUP.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/CONFIGURE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/CONFIGURE.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/DEFAULTS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/DEFAULTS.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/ESSENTIALS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/ESSENTIALS.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/INSTALL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/INSTALL.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/LOCALES.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/LOCALES.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/PKGBUILD -------------------------------------------------------------------------------- /.config/hypr/maintenance/PLUGINS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/PLUGINS.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/SDDM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/SDDM.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/TWEAKS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/TWEAKS.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/UPDATE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/UPDATE.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/WAL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/WAL.sh -------------------------------------------------------------------------------- /.config/hypr/maintenance/WALLPAPERS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/maintenance/WALLPAPERS.sh -------------------------------------------------------------------------------- /.config/hypr/onedrive/.gitignore: -------------------------------------------------------------------------------- 1 | rclone.conf 2 | -------------------------------------------------------------------------------- /.config/hypr/onedrive/onedrive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/onedrive/onedrive -------------------------------------------------------------------------------- /.config/hypr/pacman/check-pkglist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/pacman/check-pkglist.sh -------------------------------------------------------------------------------- /.config/hypr/pacman/install-pkgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/pacman/install-pkgs.sh -------------------------------------------------------------------------------- /.config/hypr/pacman/pkglist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/pacman/pkglist.txt -------------------------------------------------------------------------------- /.config/hypr/scripts-c/battery-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts-c/battery-loop.c -------------------------------------------------------------------------------- /.config/hypr/scripts-c/posture-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts-c/posture-loop.c -------------------------------------------------------------------------------- /.config/hypr/scripts-c/updates-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts-c/updates-loop.c -------------------------------------------------------------------------------- /.config/hypr/scripts/bar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/bar.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/change-resolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/change-resolution.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/clipboard-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/clipboard-monitor.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/compile-run-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/compile-run-binaries.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/dvorak-qwerty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/dvorak-qwerty.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/figlet-formater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/figlet-formater.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/hyprlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/hyprlock.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/screenshot.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/test-connection.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/test-connection.sh -------------------------------------------------------------------------------- /.config/hypr/scripts/wallpaper-reduce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/scripts/wallpaper-reduce.sh -------------------------------------------------------------------------------- /.config/hypr/theme/scripts/border-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/theme/scripts/border-theme.sh -------------------------------------------------------------------------------- /.config/hypr/theme/scripts/cursor-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/theme/scripts/cursor-theme.sh -------------------------------------------------------------------------------- /.config/hypr/theme/scripts/gtk-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/theme/scripts/gtk-theme.sh -------------------------------------------------------------------------------- /.config/hypr/theme/scripts/set-global-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/theme/scripts/set-global-theme.sh -------------------------------------------------------------------------------- /.config/hypr/theme/scripts/system-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/theme/scripts/system-theme.sh -------------------------------------------------------------------------------- /.config/hypr/theme/scripts/wal-theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/hypr/theme/scripts/wal-theme.sh -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/lsfg-vk/conf.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/lsfg-vk/conf.toml -------------------------------------------------------------------------------- /.config/pipewire/pipewire.conf.d/pipewire.conf: -------------------------------------------------------------------------------- 1 | context.properties = {default.clock.min-quantum = 1024} 2 | -------------------------------------------------------------------------------- /.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/ranger/rc.conf -------------------------------------------------------------------------------- /.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/starship.toml -------------------------------------------------------------------------------- /.config/wallpapers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/wallpapers/.gitignore -------------------------------------------------------------------------------- /.config/wallpapers/custom/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/wallpapers/lockscreen/wallpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/wallpapers/lockscreen/wallpaper -------------------------------------------------------------------------------- /.config/wayvnc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.config/wayvnc/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.gitignore -------------------------------------------------------------------------------- /.icons/default/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/default/index.theme -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/alias.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/alias.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/all-scroll.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/all-scroll.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/cell.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/cell.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/col-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/col-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/context-menu.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/context-menu.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/copy.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/copy.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/crosshair.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/crosshair.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/default.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/default.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/down.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/down.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/e-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/e-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/ew-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/ew-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/grab.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/grab.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/grabbing.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/grabbing.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/help.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/help.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/left.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/left.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/middle_finger.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/middle_finger.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/move.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/move.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/n-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/n-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/ne-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/ne-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/nesw-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/nesw-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/no-drop.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/no-drop.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/not-allowed.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/not-allowed.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/ns-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/ns-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/nw-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/nw-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/nwse-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/nwse-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/pen.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/pen.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/pencil.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/pencil.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/pipette.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/pipette.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/pointer.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/pointer.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/progress.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/progress.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/right.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/right.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/rock_and_roll.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/rock_and_roll.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/row-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/row-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/s-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/s-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/se-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/se-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/skull.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/skull.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/sw-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/sw-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/text.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/text.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/up.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/up.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/vertical-text.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/vertical-text.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/w-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/w-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/wait.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/wait.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/zoom-in.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/zoom-in.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/cursors/zoom-out.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/cursors/zoom-out.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-dark/manifest.hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-dark/manifest.hl -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/alias.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/alias.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/all-scroll.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/all-scroll.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/cell.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/cell.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/col-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/col-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/context-menu.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/context-menu.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/copy.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/copy.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/crosshair.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/crosshair.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/default.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/default.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/down.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/down.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/e-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/e-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/ew-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/ew-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/grab.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/grab.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/grabbing.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/grabbing.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/help.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/help.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/left.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/left.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/middle_finger.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/middle_finger.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/move.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/move.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/n-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/n-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/ne-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/ne-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/nesw-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/nesw-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/no-drop.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/no-drop.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/not-allowed.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/not-allowed.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/ns-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/ns-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/nw-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/nw-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/nwse-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/nwse-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/pen.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/pen.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/pencil.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/pencil.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/pipette.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/pipette.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/pointer.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/pointer.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/progress.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/progress.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/right.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/right.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/rock_and_roll.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/rock_and_roll.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/row-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/row-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/s-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/s-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/se-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/se-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/skull.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/skull.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/sw-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/sw-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/text.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/text.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/up.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/up.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/vertical-text.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/vertical-text.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/w-resize.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/w-resize.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/wait.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/wait.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/zoom-in.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/zoom-in.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/cursors/zoom-out.hlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/cursors/zoom-out.hlc -------------------------------------------------------------------------------- /.icons/theme_phinger-cursors-light/manifest.hl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.icons/theme_phinger-cursors-light/manifest.hl -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/.zshrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AymanLyesri/ArchEclipse/HEAD/README.md --------------------------------------------------------------------------------