├── .github └── FUNDING.yml ├── README.md └── dots ├── chrome ├── userChrome.css └── userContent.css ├── dunstrc ├── i3 ├── HDMI-launcher ├── alternating_layouts.py ├── bg │ ├── BG2.png │ └── bg3.png ├── borders_settings ├── config └── xborders ├── kitty ├── kitty.conf └── theme.conf ├── matlab └── matlab_colorscheme.prf ├── nitrogen ├── bg-saved.cfg └── nitrogen.cfg ├── nvim ├── README.md ├── init.lua ├── lazy-lock.json ├── lua │ ├── community.lua │ ├── lazy_setup.lua │ ├── plugins │ │ ├── astrocore.lua │ │ ├── astrolsp.lua │ │ ├── astroui.lua │ │ ├── mason.lua │ │ ├── none-ls.lua │ │ ├── treesitter.lua │ │ └── user.lua │ └── polish.lua ├── neovim.yml └── selene.toml ├── p10k.zsh ├── picom └── picom.conf ├── polybar ├── colors.ini ├── config.ini ├── launch.sh ├── modules.ini ├── scripts │ ├── bitcoin.py │ ├── ethereum.py │ ├── git_check.py │ ├── launcher.sh │ ├── rclone_check.py │ └── tsensor.sh ├── transbar.ini └── user_modules.ini ├── ranger ├── rc.conf └── rifle.conf ├── rofi ├── colors │ └── greygreen.rasi └── fonts │ └── fonts.rasi ├── spicetify └── Themes │ └── Dreary │ └── color.ini ├── starship.toml ├── zathura └── zathurarc └── zshrc /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: sommaa 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/README.md -------------------------------------------------------------------------------- /dots/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/chrome/userChrome.css -------------------------------------------------------------------------------- /dots/chrome/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/chrome/userContent.css -------------------------------------------------------------------------------- /dots/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/dunstrc -------------------------------------------------------------------------------- /dots/i3/HDMI-launcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/i3/HDMI-launcher -------------------------------------------------------------------------------- /dots/i3/alternating_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/i3/alternating_layouts.py -------------------------------------------------------------------------------- /dots/i3/bg/BG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/i3/bg/BG2.png -------------------------------------------------------------------------------- /dots/i3/bg/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/i3/bg/bg3.png -------------------------------------------------------------------------------- /dots/i3/borders_settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/i3/borders_settings -------------------------------------------------------------------------------- /dots/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/i3/config -------------------------------------------------------------------------------- /dots/i3/xborders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/i3/xborders -------------------------------------------------------------------------------- /dots/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/kitty/kitty.conf -------------------------------------------------------------------------------- /dots/kitty/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/kitty/theme.conf -------------------------------------------------------------------------------- /dots/matlab/matlab_colorscheme.prf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/matlab/matlab_colorscheme.prf -------------------------------------------------------------------------------- /dots/nitrogen/bg-saved.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nitrogen/bg-saved.cfg -------------------------------------------------------------------------------- /dots/nitrogen/nitrogen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nitrogen/nitrogen.cfg -------------------------------------------------------------------------------- /dots/nvim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/README.md -------------------------------------------------------------------------------- /dots/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/init.lua -------------------------------------------------------------------------------- /dots/nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lazy-lock.json -------------------------------------------------------------------------------- /dots/nvim/lua/community.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/community.lua -------------------------------------------------------------------------------- /dots/nvim/lua/lazy_setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/lazy_setup.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/astrocore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/plugins/astrocore.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/astrolsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/plugins/astrolsp.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/astroui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/plugins/astroui.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/mason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/plugins/mason.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/none-ls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/plugins/none-ls.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /dots/nvim/lua/plugins/user.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/plugins/user.lua -------------------------------------------------------------------------------- /dots/nvim/lua/polish.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/lua/polish.lua -------------------------------------------------------------------------------- /dots/nvim/neovim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/neovim.yml -------------------------------------------------------------------------------- /dots/nvim/selene.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/nvim/selene.toml -------------------------------------------------------------------------------- /dots/p10k.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/p10k.zsh -------------------------------------------------------------------------------- /dots/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/picom/picom.conf -------------------------------------------------------------------------------- /dots/polybar/colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/colors.ini -------------------------------------------------------------------------------- /dots/polybar/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/config.ini -------------------------------------------------------------------------------- /dots/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/launch.sh -------------------------------------------------------------------------------- /dots/polybar/modules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/modules.ini -------------------------------------------------------------------------------- /dots/polybar/scripts/bitcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/scripts/bitcoin.py -------------------------------------------------------------------------------- /dots/polybar/scripts/ethereum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/scripts/ethereum.py -------------------------------------------------------------------------------- /dots/polybar/scripts/git_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/scripts/git_check.py -------------------------------------------------------------------------------- /dots/polybar/scripts/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/scripts/launcher.sh -------------------------------------------------------------------------------- /dots/polybar/scripts/rclone_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/scripts/rclone_check.py -------------------------------------------------------------------------------- /dots/polybar/scripts/tsensor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/scripts/tsensor.sh -------------------------------------------------------------------------------- /dots/polybar/transbar.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/transbar.ini -------------------------------------------------------------------------------- /dots/polybar/user_modules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/polybar/user_modules.ini -------------------------------------------------------------------------------- /dots/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/ranger/rc.conf -------------------------------------------------------------------------------- /dots/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/ranger/rifle.conf -------------------------------------------------------------------------------- /dots/rofi/colors/greygreen.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/rofi/colors/greygreen.rasi -------------------------------------------------------------------------------- /dots/rofi/fonts/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/rofi/fonts/fonts.rasi -------------------------------------------------------------------------------- /dots/spicetify/Themes/Dreary/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/spicetify/Themes/Dreary/color.ini -------------------------------------------------------------------------------- /dots/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/starship.toml -------------------------------------------------------------------------------- /dots/zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/zathura/zathurarc -------------------------------------------------------------------------------- /dots/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sommaa/Mantis/HEAD/dots/zshrc --------------------------------------------------------------------------------