├── .github ├── FUNDING.yml └── SUPPORT.md ├── .gitignore ├── LICENSE ├── bot ├── __init__.py ├── bot.py ├── commands │ ├── __init__.py │ ├── abuse.py │ ├── account.py │ ├── fun.py │ ├── general.py │ ├── img.py │ ├── info.py │ ├── mod.py │ ├── nsfw.py │ ├── sniper.py │ ├── text.py │ ├── theming.py │ └── util.py ├── controller.py ├── events │ ├── __init__.py │ ├── nitro_sniper.py │ └── privnote_sniper.py └── helpers │ ├── __init__.py │ ├── cmdhelper.py │ ├── codeblock.py │ ├── fonts.py │ ├── imgembed.py │ ├── privnote.py │ ├── richpresence.py │ ├── sessionspoof.py │ ├── soundboard.py │ └── spypet.py ├── compile.py ├── config.example.json ├── data ├── fonts │ ├── HostGrotesk-Bold.ttf │ ├── HostGrotesk-BoldItalic.ttf │ ├── HostGrotesk-ExtraBold.ttf │ ├── HostGrotesk-ExtraBoldItalic.ttf │ ├── HostGrotesk-Italic.ttf │ ├── HostGrotesk-Light.ttf │ ├── HostGrotesk-LightItalic.ttf │ ├── HostGrotesk-Medium.ttf │ ├── HostGrotesk-MediumItalic.ttf │ ├── HostGrotesk-Regular.ttf │ ├── HostGrotesk-SemiBold.ttf │ ├── HostGrotesk-SemiBoldItalic.ttf │ ├── JetBrainsMonoNerdFont-Bold.ttf │ ├── JetBrainsMonoNerdFont-Italic.ttf │ ├── JetBrainsMonoNerdFont-Medium.ttf │ └── JetBrainsMonoNerdFont-Regular.ttf ├── gui_theme.json ├── icon-win.png ├── icon.ico ├── icon.png ├── icons │ ├── arrow-right-solid.png │ ├── check-solid.png │ ├── chevron-left-solid.png │ ├── cloud-solid.png │ ├── crosshairs-solid.png │ ├── discord-brands-solid.png │ ├── file-code-solid.png │ ├── file-signature-solid.png │ ├── folder-open-solid.png │ ├── gear-solid.png │ ├── ghost webhook template.png │ ├── ghost-logo.png │ ├── ghost-webhooks.png │ ├── github-brands-solid.png │ ├── house-solid.png │ ├── magnifying-glass-solid.png │ ├── max-solid.png │ ├── min-solid.png │ ├── paint-roller-solid.png │ ├── plus-solid.png │ ├── power-off-solid.png │ ├── rotate-right-solid.png │ ├── screwdriver-wrench-solid.png │ ├── script-solid.png │ ├── shuffle-solid.png │ ├── terminal-solid.png │ ├── trash-solid-white.png │ └── trash-solid.png └── waves.png ├── ghost.py ├── gui ├── __init__.py ├── components │ ├── __init__.py │ ├── console.py │ ├── rounded_button.py │ ├── rounded_frame.py │ ├── settings │ │ ├── __init__.py │ │ ├── apis.py │ │ ├── general.py │ │ ├── rich_presence.py │ │ ├── session_spoofing.py │ │ ├── snipers.py │ │ └── theming.py │ ├── settings_frame.py │ ├── settings_panel.py │ ├── sidebar.py │ └── titlebar.py ├── font_check.py ├── helpers │ ├── __init__.py │ ├── images.py │ └── layout.py ├── main.py └── pages │ ├── __init__.py │ ├── home.py │ ├── loading.py │ ├── onboarding.py │ ├── script.py │ ├── scripts.py │ └── settings.py ├── readme.md ├── requirements.txt └── utils ├── __init__.py ├── config ├── __init__.py ├── config.py ├── rich_presence.py ├── sniper.py ├── theme.py └── token.py ├── console.py ├── defaults.py ├── files.py ├── fonts.py ├── notifier.py ├── startup_check.py └── webhook.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/LICENSE -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/__init__.py -------------------------------------------------------------------------------- /bot/commands/abuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/abuse.py -------------------------------------------------------------------------------- /bot/commands/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/account.py -------------------------------------------------------------------------------- /bot/commands/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/fun.py -------------------------------------------------------------------------------- /bot/commands/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/general.py -------------------------------------------------------------------------------- /bot/commands/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/img.py -------------------------------------------------------------------------------- /bot/commands/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/info.py -------------------------------------------------------------------------------- /bot/commands/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/mod.py -------------------------------------------------------------------------------- /bot/commands/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/nsfw.py -------------------------------------------------------------------------------- /bot/commands/sniper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/sniper.py -------------------------------------------------------------------------------- /bot/commands/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/text.py -------------------------------------------------------------------------------- /bot/commands/theming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/theming.py -------------------------------------------------------------------------------- /bot/commands/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/commands/util.py -------------------------------------------------------------------------------- /bot/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/controller.py -------------------------------------------------------------------------------- /bot/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/events/__init__.py -------------------------------------------------------------------------------- /bot/events/nitro_sniper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/events/nitro_sniper.py -------------------------------------------------------------------------------- /bot/events/privnote_sniper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/events/privnote_sniper.py -------------------------------------------------------------------------------- /bot/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/__init__.py -------------------------------------------------------------------------------- /bot/helpers/cmdhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/cmdhelper.py -------------------------------------------------------------------------------- /bot/helpers/codeblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/codeblock.py -------------------------------------------------------------------------------- /bot/helpers/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/fonts.py -------------------------------------------------------------------------------- /bot/helpers/imgembed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/imgembed.py -------------------------------------------------------------------------------- /bot/helpers/privnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/privnote.py -------------------------------------------------------------------------------- /bot/helpers/richpresence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/richpresence.py -------------------------------------------------------------------------------- /bot/helpers/sessionspoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/sessionspoof.py -------------------------------------------------------------------------------- /bot/helpers/soundboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/soundboard.py -------------------------------------------------------------------------------- /bot/helpers/spypet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/bot/helpers/spypet.py -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/compile.py -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/config.example.json -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-Bold.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-BoldItalic.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-ExtraBold.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-Italic.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-Light.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-LightItalic.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-Medium.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-MediumItalic.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-Regular.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-SemiBold.ttf -------------------------------------------------------------------------------- /data/fonts/HostGrotesk-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/HostGrotesk-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /data/fonts/JetBrainsMonoNerdFont-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/JetBrainsMonoNerdFont-Bold.ttf -------------------------------------------------------------------------------- /data/fonts/JetBrainsMonoNerdFont-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/JetBrainsMonoNerdFont-Italic.ttf -------------------------------------------------------------------------------- /data/fonts/JetBrainsMonoNerdFont-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/JetBrainsMonoNerdFont-Medium.ttf -------------------------------------------------------------------------------- /data/fonts/JetBrainsMonoNerdFont-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/fonts/JetBrainsMonoNerdFont-Regular.ttf -------------------------------------------------------------------------------- /data/gui_theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/gui_theme.json -------------------------------------------------------------------------------- /data/icon-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icon-win.png -------------------------------------------------------------------------------- /data/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icon.ico -------------------------------------------------------------------------------- /data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icon.png -------------------------------------------------------------------------------- /data/icons/arrow-right-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/arrow-right-solid.png -------------------------------------------------------------------------------- /data/icons/check-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/check-solid.png -------------------------------------------------------------------------------- /data/icons/chevron-left-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/chevron-left-solid.png -------------------------------------------------------------------------------- /data/icons/cloud-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/cloud-solid.png -------------------------------------------------------------------------------- /data/icons/crosshairs-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/crosshairs-solid.png -------------------------------------------------------------------------------- /data/icons/discord-brands-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/discord-brands-solid.png -------------------------------------------------------------------------------- /data/icons/file-code-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/file-code-solid.png -------------------------------------------------------------------------------- /data/icons/file-signature-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/file-signature-solid.png -------------------------------------------------------------------------------- /data/icons/folder-open-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/folder-open-solid.png -------------------------------------------------------------------------------- /data/icons/gear-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/gear-solid.png -------------------------------------------------------------------------------- /data/icons/ghost webhook template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/ghost webhook template.png -------------------------------------------------------------------------------- /data/icons/ghost-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/ghost-logo.png -------------------------------------------------------------------------------- /data/icons/ghost-webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/ghost-webhooks.png -------------------------------------------------------------------------------- /data/icons/github-brands-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/github-brands-solid.png -------------------------------------------------------------------------------- /data/icons/house-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/house-solid.png -------------------------------------------------------------------------------- /data/icons/magnifying-glass-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/magnifying-glass-solid.png -------------------------------------------------------------------------------- /data/icons/max-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/max-solid.png -------------------------------------------------------------------------------- /data/icons/min-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/min-solid.png -------------------------------------------------------------------------------- /data/icons/paint-roller-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/paint-roller-solid.png -------------------------------------------------------------------------------- /data/icons/plus-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/plus-solid.png -------------------------------------------------------------------------------- /data/icons/power-off-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/power-off-solid.png -------------------------------------------------------------------------------- /data/icons/rotate-right-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/rotate-right-solid.png -------------------------------------------------------------------------------- /data/icons/screwdriver-wrench-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/screwdriver-wrench-solid.png -------------------------------------------------------------------------------- /data/icons/script-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/script-solid.png -------------------------------------------------------------------------------- /data/icons/shuffle-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/shuffle-solid.png -------------------------------------------------------------------------------- /data/icons/terminal-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/terminal-solid.png -------------------------------------------------------------------------------- /data/icons/trash-solid-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/trash-solid-white.png -------------------------------------------------------------------------------- /data/icons/trash-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/icons/trash-solid.png -------------------------------------------------------------------------------- /data/waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/data/waves.png -------------------------------------------------------------------------------- /ghost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/ghost.py -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/__init__.py -------------------------------------------------------------------------------- /gui/components/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/console.py -------------------------------------------------------------------------------- /gui/components/rounded_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/rounded_button.py -------------------------------------------------------------------------------- /gui/components/rounded_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/rounded_frame.py -------------------------------------------------------------------------------- /gui/components/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings/__init__.py -------------------------------------------------------------------------------- /gui/components/settings/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings/apis.py -------------------------------------------------------------------------------- /gui/components/settings/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings/general.py -------------------------------------------------------------------------------- /gui/components/settings/rich_presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings/rich_presence.py -------------------------------------------------------------------------------- /gui/components/settings/session_spoofing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings/session_spoofing.py -------------------------------------------------------------------------------- /gui/components/settings/snipers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings/snipers.py -------------------------------------------------------------------------------- /gui/components/settings/theming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings/theming.py -------------------------------------------------------------------------------- /gui/components/settings_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings_frame.py -------------------------------------------------------------------------------- /gui/components/settings_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/settings_panel.py -------------------------------------------------------------------------------- /gui/components/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/sidebar.py -------------------------------------------------------------------------------- /gui/components/titlebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/components/titlebar.py -------------------------------------------------------------------------------- /gui/font_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/font_check.py -------------------------------------------------------------------------------- /gui/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/helpers/__init__.py -------------------------------------------------------------------------------- /gui/helpers/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/helpers/images.py -------------------------------------------------------------------------------- /gui/helpers/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/helpers/layout.py -------------------------------------------------------------------------------- /gui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/main.py -------------------------------------------------------------------------------- /gui/pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/pages/__init__.py -------------------------------------------------------------------------------- /gui/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/pages/home.py -------------------------------------------------------------------------------- /gui/pages/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/pages/loading.py -------------------------------------------------------------------------------- /gui/pages/onboarding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/pages/onboarding.py -------------------------------------------------------------------------------- /gui/pages/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/pages/script.py -------------------------------------------------------------------------------- /gui/pages/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/pages/scripts.py -------------------------------------------------------------------------------- /gui/pages/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/gui/pages/settings.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/config/__init__.py -------------------------------------------------------------------------------- /utils/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/config/config.py -------------------------------------------------------------------------------- /utils/config/rich_presence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/config/rich_presence.py -------------------------------------------------------------------------------- /utils/config/sniper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/config/sniper.py -------------------------------------------------------------------------------- /utils/config/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/config/theme.py -------------------------------------------------------------------------------- /utils/config/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/config/token.py -------------------------------------------------------------------------------- /utils/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/console.py -------------------------------------------------------------------------------- /utils/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/defaults.py -------------------------------------------------------------------------------- /utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/files.py -------------------------------------------------------------------------------- /utils/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/fonts.py -------------------------------------------------------------------------------- /utils/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/notifier.py -------------------------------------------------------------------------------- /utils/startup_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/startup_check.py -------------------------------------------------------------------------------- /utils/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghostselfbot/ghost/HEAD/utils/webhook.py --------------------------------------------------------------------------------