├── .gitignore ├── LICENSE ├── README.md ├── changelog.md ├── git-push.sh └── src ├── PKGBUILD ├── config └── bspwm │ ├── alacritty │ ├── alacritty.toml │ ├── colors.toml │ └── fonts.toml │ ├── bin │ ├── apps_as_root │ ├── askpass │ ├── bspbar │ ├── bspbrightness │ ├── bspcolors │ ├── bspcomp │ ├── bspconfig │ ├── bspdunst │ ├── bspfloat │ ├── bspmonitors │ ├── bsprules │ ├── bspterm │ ├── bsptmux │ ├── bspvolume │ ├── keybinding │ ├── keybinding.md │ └── winmask │ ├── bspwmrc │ ├── dunst │ └── dunstrc │ ├── exodia.conf │ ├── keybinding │ └── sxhkdrc │ ├── picom │ ├── animation.conf │ ├── default.conf │ ├── inactive-window-blur.conf │ ├── picom-1.conf │ ├── picom-2.conf │ ├── picom-ibhagwan.conf │ ├── picom-jonaburg.conf │ ├── picom-original.conf │ ├── picom-pijulius.conf │ ├── picom.conf │ ├── picom_default.conf │ ├── shadow-animation.conf │ └── shadow.conf │ ├── rofi │ ├── bin │ │ ├── asroot │ │ ├── confirm │ │ ├── error │ │ ├── launcher │ │ ├── mpd │ │ ├── network │ │ ├── powermenu │ │ ├── screenshot │ │ ├── themes │ │ └── windows │ └── themes │ │ ├── askpass.rasi │ │ ├── asroot.rasi │ │ ├── colors.rasi │ │ ├── confirm.rasi │ │ ├── error.rasi │ │ ├── keybinding-config.rasi │ │ ├── keybinding.rasi │ │ ├── launcher.rasi │ │ ├── mpd.rasi │ │ ├── network.rasi │ │ ├── networkmenu.rasi │ │ ├── powermenu.rasi │ │ ├── screenshot.rasi │ │ ├── themes.rasi │ │ └── window.rasi │ ├── themes │ ├── Acer Predator │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Black And Red │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ ├── networkModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── updates.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── BlackArch │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Chad WM │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── .vscode │ │ │ │ │ └── .server-controller-port.log │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── .tours │ │ │ │ │ └── intro.tour │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Emilia │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Ethereum │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Exodia │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Hack │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ ├── networkModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Hacker Den │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ ├── networkModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── ICE Moon │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ ├── networkModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Islamic Knights │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ ├── networkModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── JS Coffee │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Japanese City │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Japanese Street 2 │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Japanese Street │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── MacOS Dark │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ ├── system │ │ │ └── tint2rc │ │ ├── preview.png │ │ └── theme.conf │ ├── MacOS Light │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ ├── system │ │ │ └── tint2rc │ │ ├── preview.png │ │ └── theme.conf │ ├── Melissa │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── MoonLight │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── check-network │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Smoke │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── Apps │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ ├── Tokyo City │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ │ ├── colors │ │ │ ├── config │ │ │ ├── launch.sh │ │ │ ├── modules │ │ │ │ ├── mediaModules │ │ │ │ ├── modules │ │ │ │ ├── monitoringModules │ │ │ │ └── separatorsModules │ │ │ ├── scripts │ │ │ │ ├── cava │ │ │ │ ├── heatSensors │ │ │ │ ├── mic-control │ │ │ │ ├── notification-github.sh │ │ │ │ ├── updates-pacman.sh │ │ │ │ ├── weather │ │ │ │ └── wifi │ │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ └── VALORANT │ │ ├── apply-theme │ │ ├── colorScheme │ │ ├── polybar │ │ ├── colors │ │ ├── config │ │ ├── launch.sh │ │ ├── modules │ │ │ ├── mediaModules │ │ │ ├── modules │ │ │ ├── monitoringModules │ │ │ └── separatorsModules │ │ ├── scripts │ │ │ ├── cava │ │ │ ├── heatSensors │ │ │ ├── mic-control │ │ │ ├── notification-github.sh │ │ │ ├── pulse-mic │ │ │ ├── updates-pacman.sh │ │ │ ├── weather │ │ │ └── wifi │ │ └── system │ │ ├── preview.png │ │ └── theme.conf │ └── xsettingsd ├── exodia-bspwm.install └── makepkg.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/changelog.md -------------------------------------------------------------------------------- /git-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/git-push.sh -------------------------------------------------------------------------------- /src/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/PKGBUILD -------------------------------------------------------------------------------- /src/config/bspwm/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/alacritty/alacritty.toml -------------------------------------------------------------------------------- /src/config/bspwm/alacritty/colors.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/alacritty/colors.toml -------------------------------------------------------------------------------- /src/config/bspwm/alacritty/fonts.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/alacritty/fonts.toml -------------------------------------------------------------------------------- /src/config/bspwm/bin/apps_as_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/apps_as_root -------------------------------------------------------------------------------- /src/config/bspwm/bin/askpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/askpass -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspbar -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspbrightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspbrightness -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspcolors -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspcomp -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspconfig -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspdunst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspdunst -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspfloat -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspmonitors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspmonitors -------------------------------------------------------------------------------- /src/config/bspwm/bin/bsprules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bsprules -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspterm -------------------------------------------------------------------------------- /src/config/bspwm/bin/bsptmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bsptmux -------------------------------------------------------------------------------- /src/config/bspwm/bin/bspvolume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/bspvolume -------------------------------------------------------------------------------- /src/config/bspwm/bin/keybinding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/keybinding -------------------------------------------------------------------------------- /src/config/bspwm/bin/keybinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/keybinding.md -------------------------------------------------------------------------------- /src/config/bspwm/bin/winmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bin/winmask -------------------------------------------------------------------------------- /src/config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/bspwmrc -------------------------------------------------------------------------------- /src/config/bspwm/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/dunst/dunstrc -------------------------------------------------------------------------------- /src/config/bspwm/exodia.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/exodia.conf -------------------------------------------------------------------------------- /src/config/bspwm/keybinding/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/keybinding/sxhkdrc -------------------------------------------------------------------------------- /src/config/bspwm/picom/animation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/animation.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/default.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/inactive-window-blur.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/inactive-window-blur.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom-1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom-1.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom-2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom-2.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom-ibhagwan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom-ibhagwan.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom-jonaburg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom-jonaburg.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom-original.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom-original.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom-pijulius.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom-pijulius.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/picom_default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/picom_default.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/shadow-animation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/shadow-animation.conf -------------------------------------------------------------------------------- /src/config/bspwm/picom/shadow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/picom/shadow.conf -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/asroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/asroot -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/confirm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/confirm -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/error -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/launcher -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/mpd -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/network -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/powermenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/powermenu -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/screenshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/screenshot -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/themes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/themes -------------------------------------------------------------------------------- /src/config/bspwm/rofi/bin/windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/bin/windows -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/askpass.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/askpass.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/asroot.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/asroot.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/colors.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/confirm.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/error.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/error.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/keybinding-config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/keybinding-config.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/keybinding.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/keybinding.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/launcher.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/launcher.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/mpd.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/mpd.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/network.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/network.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/networkmenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/networkmenu.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/powermenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/powermenu.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/screenshot.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/screenshot.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/themes.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/themes.rasi -------------------------------------------------------------------------------- /src/config/bspwm/rofi/themes/window.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/rofi/themes/window.rasi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Acer Predator/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Acer Predator/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/modules/networkModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/modules/networkModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/updates.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Black And Red/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Black And Red/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/BlackArch/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/BlackArch/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/modules/.vscode/.server-controller-port.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/modules/.vscode/.server-controller-port.log -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/.tours/intro.tour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/.tours/intro.tour -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Chad WM/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Chad WM/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Emilia/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Emilia/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Ethereum/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Ethereum/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Exodia/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Exodia/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/modules/networkModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/modules/networkModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hack/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hack/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/modules/networkModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/modules/networkModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Hacker Den/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Hacker Den/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/modules/networkModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/modules/networkModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/ICE Moon/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/ICE Moon/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/modules/networkModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/modules/networkModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Islamic Knights/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Islamic Knights/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/JS Coffee/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/JS Coffee/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese City/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese City/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street 2/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street 2/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Japanese Street/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Japanese Street/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/polybar/tint2rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/polybar/tint2rc -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Dark/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Dark/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/polybar/tint2rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/polybar/tint2rc -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/MacOS Light/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MacOS Light/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Melissa/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Melissa/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/check-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/check-network -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/MoonLight/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/MoonLight/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/modules/Apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/modules/Apps -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Smoke/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Smoke/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/Tokyo City/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/Tokyo City/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/apply-theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/apply-theme -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/colorScheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/colorScheme -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/colors -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/config -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/launch.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/modules/mediaModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/modules/mediaModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/modules/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/modules/modules -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/modules/monitoringModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/modules/monitoringModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/modules/separatorsModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/modules/separatorsModules -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/cava -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/heatSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/heatSensors -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/mic-control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/mic-control -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/notification-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/notification-github.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/pulse-mic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/pulse-mic -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/updates-pacman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/updates-pacman.sh -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/weather -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/scripts/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/scripts/wifi -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/polybar/system -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/preview.png -------------------------------------------------------------------------------- /src/config/bspwm/themes/VALORANT/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/themes/VALORANT/theme.conf -------------------------------------------------------------------------------- /src/config/bspwm/xsettingsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/config/bspwm/xsettingsd -------------------------------------------------------------------------------- /src/exodia-bspwm.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/exodia-bspwm.install -------------------------------------------------------------------------------- /src/makepkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Exodia-OS/exodia-bspwm/HEAD/src/makepkg.sh --------------------------------------------------------------------------------