├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── ax.png ├── cover.png ├── default.png ├── emoji.json ├── fonts │ └── tabler-icons │ │ └── tabler-icons.ttf ├── ko-fi.gif ├── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── soon.png └── wallpapers_example │ ├── example-1.jpg │ ├── example-2.jpg │ ├── example-3.jpg │ ├── example-4.webp │ └── example-5.jpg ├── config ├── __init__.py ├── cavalcade │ └── cava.ini ├── config.py ├── data.py ├── hypr │ ├── hypridle.conf │ └── hyprlock.conf ├── matugen │ └── templates │ │ ├── ax-shell.css │ │ └── hyprland-colors.conf ├── settings_constants.py ├── settings_gui.py └── settings_utils.py ├── install.sh ├── main.css ├── main.py ├── modules ├── __init__.py ├── bar.py ├── bluetooth.py ├── buttons.py ├── calendar.py ├── cavalcade.py ├── cliphist.py ├── controls.py ├── corners.py ├── dashboard.py ├── dock.py ├── emoji.py ├── icons.py ├── kanban.py ├── launcher.py ├── metrics.py ├── mixer.py ├── network.py ├── notch.py ├── notifications.py ├── overview.py ├── pins.py ├── player.py ├── power.py ├── shader.py ├── systemprofiles.py ├── systemtray.py ├── tmux.py ├── tools.py ├── updater.py ├── upower │ ├── LICENSE │ ├── __init__.py │ └── upower.py ├── wallpapers.py ├── weather.py └── widgets.py ├── scripts ├── gamemode.sh ├── hyprland_multimonitor_config.conf ├── hyprpicker.sh ├── inhibit.py ├── ocr.sh ├── pomodoro.sh ├── screenrecord.sh ├── screenshot.sh ├── toggle_launcher.py └── toggle_overview.py ├── services ├── __init__.py ├── brightness.py ├── monitor_focus.py ├── mpris.py └── network.py ├── styles ├── applets.css ├── bar.css ├── battery.css ├── buttons.css ├── calendar.css ├── controls.css ├── dashboard.css ├── dock.css ├── emoji.css ├── extras.css ├── kanban.css ├── launcher.css ├── metrics.css ├── notch.css ├── notifications.css ├── overview.css ├── pins.css ├── player.css ├── power.css ├── shadows.css ├── systemprofiles.css ├── tools.css ├── wallpapers.css └── workspaces.css ├── uninstall.sh ├── utils ├── __init__.py ├── animator.py ├── async_subprocess.py ├── colors.py ├── conversion.py ├── functions.py ├── global_keybinds.py ├── hyprland_monitor.py ├── icon_resolver.py ├── icons.py ├── monitor_manager.py └── occlusion.py ├── version.json └── widgets ├── circle_image.py ├── image.py ├── shadertoy.py └── wayland.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/README.md -------------------------------------------------------------------------------- /assets/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/ax.png -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/cover.png -------------------------------------------------------------------------------- /assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/default.png -------------------------------------------------------------------------------- /assets/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/emoji.json -------------------------------------------------------------------------------- /assets/fonts/tabler-icons/tabler-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/fonts/tabler-icons/tabler-icons.ttf -------------------------------------------------------------------------------- /assets/ko-fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/ko-fi.gif -------------------------------------------------------------------------------- /assets/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/screenshots/1.png -------------------------------------------------------------------------------- /assets/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/screenshots/2.png -------------------------------------------------------------------------------- /assets/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/screenshots/3.png -------------------------------------------------------------------------------- /assets/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/screenshots/4.png -------------------------------------------------------------------------------- /assets/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/screenshots/5.png -------------------------------------------------------------------------------- /assets/soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/soon.png -------------------------------------------------------------------------------- /assets/wallpapers_example/example-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/wallpapers_example/example-1.jpg -------------------------------------------------------------------------------- /assets/wallpapers_example/example-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/wallpapers_example/example-2.jpg -------------------------------------------------------------------------------- /assets/wallpapers_example/example-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/wallpapers_example/example-3.jpg -------------------------------------------------------------------------------- /assets/wallpapers_example/example-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/wallpapers_example/example-4.webp -------------------------------------------------------------------------------- /assets/wallpapers_example/example-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/assets/wallpapers_example/example-5.jpg -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/cavalcade/cava.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/cavalcade/cava.ini -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/config.py -------------------------------------------------------------------------------- /config/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/data.py -------------------------------------------------------------------------------- /config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/hypr/hypridle.conf -------------------------------------------------------------------------------- /config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /config/matugen/templates/ax-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/matugen/templates/ax-shell.css -------------------------------------------------------------------------------- /config/matugen/templates/hyprland-colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/matugen/templates/hyprland-colors.conf -------------------------------------------------------------------------------- /config/settings_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/settings_constants.py -------------------------------------------------------------------------------- /config/settings_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/settings_gui.py -------------------------------------------------------------------------------- /config/settings_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/config/settings_utils.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/install.sh -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/main.css -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/bar.py -------------------------------------------------------------------------------- /modules/bluetooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/bluetooth.py -------------------------------------------------------------------------------- /modules/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/buttons.py -------------------------------------------------------------------------------- /modules/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/calendar.py -------------------------------------------------------------------------------- /modules/cavalcade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/cavalcade.py -------------------------------------------------------------------------------- /modules/cliphist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/cliphist.py -------------------------------------------------------------------------------- /modules/controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/controls.py -------------------------------------------------------------------------------- /modules/corners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/corners.py -------------------------------------------------------------------------------- /modules/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/dashboard.py -------------------------------------------------------------------------------- /modules/dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/dock.py -------------------------------------------------------------------------------- /modules/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/emoji.py -------------------------------------------------------------------------------- /modules/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/icons.py -------------------------------------------------------------------------------- /modules/kanban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/kanban.py -------------------------------------------------------------------------------- /modules/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/launcher.py -------------------------------------------------------------------------------- /modules/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/metrics.py -------------------------------------------------------------------------------- /modules/mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/mixer.py -------------------------------------------------------------------------------- /modules/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/network.py -------------------------------------------------------------------------------- /modules/notch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/notch.py -------------------------------------------------------------------------------- /modules/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/notifications.py -------------------------------------------------------------------------------- /modules/overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/overview.py -------------------------------------------------------------------------------- /modules/pins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/pins.py -------------------------------------------------------------------------------- /modules/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/player.py -------------------------------------------------------------------------------- /modules/power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/power.py -------------------------------------------------------------------------------- /modules/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/shader.py -------------------------------------------------------------------------------- /modules/systemprofiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/systemprofiles.py -------------------------------------------------------------------------------- /modules/systemtray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/systemtray.py -------------------------------------------------------------------------------- /modules/tmux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/tmux.py -------------------------------------------------------------------------------- /modules/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/tools.py -------------------------------------------------------------------------------- /modules/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/updater.py -------------------------------------------------------------------------------- /modules/upower/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/upower/LICENSE -------------------------------------------------------------------------------- /modules/upower/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/upower/__init__.py -------------------------------------------------------------------------------- /modules/upower/upower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/upower/upower.py -------------------------------------------------------------------------------- /modules/wallpapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/wallpapers.py -------------------------------------------------------------------------------- /modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/weather.py -------------------------------------------------------------------------------- /modules/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/modules/widgets.py -------------------------------------------------------------------------------- /scripts/gamemode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/gamemode.sh -------------------------------------------------------------------------------- /scripts/hyprland_multimonitor_config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/hyprland_multimonitor_config.conf -------------------------------------------------------------------------------- /scripts/hyprpicker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/hyprpicker.sh -------------------------------------------------------------------------------- /scripts/inhibit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/inhibit.py -------------------------------------------------------------------------------- /scripts/ocr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/ocr.sh -------------------------------------------------------------------------------- /scripts/pomodoro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/pomodoro.sh -------------------------------------------------------------------------------- /scripts/screenrecord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/screenrecord.sh -------------------------------------------------------------------------------- /scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/screenshot.sh -------------------------------------------------------------------------------- /scripts/toggle_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/toggle_launcher.py -------------------------------------------------------------------------------- /scripts/toggle_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/scripts/toggle_overview.py -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/services/__init__.py -------------------------------------------------------------------------------- /services/brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/services/brightness.py -------------------------------------------------------------------------------- /services/monitor_focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/services/monitor_focus.py -------------------------------------------------------------------------------- /services/mpris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/services/mpris.py -------------------------------------------------------------------------------- /services/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/services/network.py -------------------------------------------------------------------------------- /styles/applets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/applets.css -------------------------------------------------------------------------------- /styles/bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/bar.css -------------------------------------------------------------------------------- /styles/battery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/battery.css -------------------------------------------------------------------------------- /styles/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/buttons.css -------------------------------------------------------------------------------- /styles/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/calendar.css -------------------------------------------------------------------------------- /styles/controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/controls.css -------------------------------------------------------------------------------- /styles/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/dashboard.css -------------------------------------------------------------------------------- /styles/dock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/dock.css -------------------------------------------------------------------------------- /styles/emoji.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/emoji.css -------------------------------------------------------------------------------- /styles/extras.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/extras.css -------------------------------------------------------------------------------- /styles/kanban.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/kanban.css -------------------------------------------------------------------------------- /styles/launcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/launcher.css -------------------------------------------------------------------------------- /styles/metrics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/metrics.css -------------------------------------------------------------------------------- /styles/notch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/notch.css -------------------------------------------------------------------------------- /styles/notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/notifications.css -------------------------------------------------------------------------------- /styles/overview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/overview.css -------------------------------------------------------------------------------- /styles/pins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/pins.css -------------------------------------------------------------------------------- /styles/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/player.css -------------------------------------------------------------------------------- /styles/power.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/power.css -------------------------------------------------------------------------------- /styles/shadows.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/shadows.css -------------------------------------------------------------------------------- /styles/systemprofiles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/systemprofiles.css -------------------------------------------------------------------------------- /styles/tools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/tools.css -------------------------------------------------------------------------------- /styles/wallpapers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/wallpapers.css -------------------------------------------------------------------------------- /styles/workspaces.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/styles/workspaces.css -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/uninstall.sh -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/animator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/animator.py -------------------------------------------------------------------------------- /utils/async_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/async_subprocess.py -------------------------------------------------------------------------------- /utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/colors.py -------------------------------------------------------------------------------- /utils/conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/conversion.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/functions.py -------------------------------------------------------------------------------- /utils/global_keybinds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/global_keybinds.py -------------------------------------------------------------------------------- /utils/hyprland_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/hyprland_monitor.py -------------------------------------------------------------------------------- /utils/icon_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/icon_resolver.py -------------------------------------------------------------------------------- /utils/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/icons.py -------------------------------------------------------------------------------- /utils/monitor_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/monitor_manager.py -------------------------------------------------------------------------------- /utils/occlusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/utils/occlusion.py -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/version.json -------------------------------------------------------------------------------- /widgets/circle_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/widgets/circle_image.py -------------------------------------------------------------------------------- /widgets/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/widgets/image.py -------------------------------------------------------------------------------- /widgets/shadertoy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/widgets/shadertoy.py -------------------------------------------------------------------------------- /widgets/wayland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axenide/Ax-Shell/HEAD/widgets/wayland.py --------------------------------------------------------------------------------