├── .bashrc ├── .gitignore ├── .zshrc ├── LICENSE ├── README.md ├── bat └── config ├── docs └── keybindings.md ├── doom ├── config.el ├── init.el └── packages.el ├── dunst ├── dunstrc └── dunstrc.bkp.darkbg ├── fastfetch ├── arch.jsonc ├── ascii │ └── arch.txt ├── config.jsonc ├── hypr.jsonc ├── images │ └── arch-linux_logo.png └── os.jsonc ├── ghostty └── config ├── git └── config ├── helix └── config.toml ├── hypr ├── env.conf ├── hypridle.conf ├── hyprland.conf ├── hyprlock.conf ├── hyprpaper.conf └── scripts │ ├── caffeine.sh │ ├── hyprsunset.sh │ ├── journal │ ├── today │ └── tomorrow │ ├── keymap-menu.sh │ ├── main-menu.sh │ ├── power-menu.sh │ ├── rofi-smart-run.sh │ ├── screenshot.sh │ ├── songdetail-hyprlock.sh │ ├── startup.sh │ ├── timetracker.sh │ └── wallpaper-selector.sh ├── hyprpanel ├── config.json ├── modules.json └── modules.scss ├── kanata ├── README.md ├── kanata.kbd └── setup.sh ├── kitty └── kitty.conf ├── monitors.xml ├── mpv ├── input.conf └── mpv.conf ├── nvim ├── .neoconf.json ├── .stylua.toml ├── init.lua ├── lazy-lock.json ├── lua │ ├── community.lua │ ├── config │ │ ├── debug.lua │ │ ├── macros.lua │ │ └── mappings.lua │ ├── lazy_setup.lua │ ├── plugins │ │ ├── astrolsp.lua │ │ ├── csvview.lua │ │ ├── dadbod.lua │ │ ├── flash.lua │ │ ├── mason.lua │ │ ├── mini-surround.lua │ │ ├── neo-tree.lua │ │ ├── neoscroll.lua │ │ ├── render-markdown.lua │ │ ├── treesitter.lua │ │ └── user.lua │ ├── polish.lua │ └── unused-plugins │ │ ├── astrocore.lua │ │ ├── avante.lua │ │ ├── none-ls.lua │ │ ├── obsidian.lua │ │ ├── supermaven.lua │ │ └── windsurf.lua ├── neovim.yml └── selene.toml ├── playerctl └── playerctl.conf ├── posting └── config.yaml ├── qBittorrent └── themes │ └── darkstylesheet.qbtheme ├── qutebrowser ├── autoconfig.yml ├── bookmarks │ └── urls ├── config.py └── quickmarks ├── rofi ├── config.rasi ├── power.rasi ├── power.rasi.bkp └── themes │ ├── catppuccin-transparent.rasi │ └── catppuccin.rasi ├── screenshots ├── control-center1.png ├── control-center2.png ├── control-center3.png ├── desktop-overview.png ├── hyprpanel-preview.png ├── kitty-terminal-preview.png ├── music-player.png ├── neovim-preview.png ├── power-menu.png ├── rofi-preview.png ├── tmux-full-preview.png ├── tmux-status-line.png └── zathura-pdf-viewer.png ├── scripts ├── firmware-update.sh ├── install-apps.sh ├── pacman.txt ├── remove-pkg.sh ├── timewarrior-graph.sh ├── timewarrior-status.sh ├── tmux-open-github.sh ├── tmux-open-pdf.sh ├── tmux-session-manager.sh ├── tmux-sessionizer.sh └── yay.txt ├── tmux ├── tmux.conf └── tmux.conf.catppuccin.bkp ├── user-flags.conf.bkp ├── vimium-config-20251014.json ├── waybar ├── config └── style.css ├── waypaper └── config.ini ├── yazi ├── flavors │ ├── catppuccin-mocha.yazi │ │ ├── DO_NOT_MODIFY_ANYTHING_IN_THIS_DIRECTORY │ │ ├── LICENSE │ │ ├── LICENSE-tmtheme │ │ ├── README.md │ │ ├── flavor.toml │ │ ├── preview.png │ │ └── tmtheme.xml │ └── tokyonight-night.yazi │ │ ├── LICENSE │ │ ├── LICENSE-tmtheme │ │ ├── README.md │ │ ├── flavor.toml │ │ ├── preview.png │ │ └── tmtheme.xml ├── package.toml ├── theme.toml ├── yazi.toml └── yazi.toml-1750337882441334 ├── zathura └── zathurarc ├── zed ├── keymap.json └── settings.json └── zshrc-symlink.sh /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bat/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/bat/config -------------------------------------------------------------------------------- /docs/keybindings.md: -------------------------------------------------------------------------------- 1 | ### Inprogress 2 | 3 | will add it asap 4 | -------------------------------------------------------------------------------- /doom/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/doom/config.el -------------------------------------------------------------------------------- /doom/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/doom/init.el -------------------------------------------------------------------------------- /doom/packages.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/doom/packages.el -------------------------------------------------------------------------------- /dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/dunst/dunstrc -------------------------------------------------------------------------------- /dunst/dunstrc.bkp.darkbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/dunst/dunstrc.bkp.darkbg -------------------------------------------------------------------------------- /fastfetch/arch.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/fastfetch/arch.jsonc -------------------------------------------------------------------------------- /fastfetch/ascii/arch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/fastfetch/ascii/arch.txt -------------------------------------------------------------------------------- /fastfetch/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/fastfetch/config.jsonc -------------------------------------------------------------------------------- /fastfetch/hypr.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/fastfetch/hypr.jsonc -------------------------------------------------------------------------------- /fastfetch/images/arch-linux_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/fastfetch/images/arch-linux_logo.png -------------------------------------------------------------------------------- /fastfetch/os.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/fastfetch/os.jsonc -------------------------------------------------------------------------------- /ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/ghostty/config -------------------------------------------------------------------------------- /git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/git/config -------------------------------------------------------------------------------- /helix/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/helix/config.toml -------------------------------------------------------------------------------- /hypr/env.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/env.conf -------------------------------------------------------------------------------- /hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/hypridle.conf -------------------------------------------------------------------------------- /hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/hyprland.conf -------------------------------------------------------------------------------- /hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/hyprlock.conf -------------------------------------------------------------------------------- /hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /hypr/scripts/caffeine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/caffeine.sh -------------------------------------------------------------------------------- /hypr/scripts/hyprsunset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/hyprsunset.sh -------------------------------------------------------------------------------- /hypr/scripts/journal/today: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/journal/today -------------------------------------------------------------------------------- /hypr/scripts/journal/tomorrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/journal/tomorrow -------------------------------------------------------------------------------- /hypr/scripts/keymap-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/keymap-menu.sh -------------------------------------------------------------------------------- /hypr/scripts/main-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/main-menu.sh -------------------------------------------------------------------------------- /hypr/scripts/power-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/power-menu.sh -------------------------------------------------------------------------------- /hypr/scripts/rofi-smart-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/rofi-smart-run.sh -------------------------------------------------------------------------------- /hypr/scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/screenshot.sh -------------------------------------------------------------------------------- /hypr/scripts/songdetail-hyprlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/songdetail-hyprlock.sh -------------------------------------------------------------------------------- /hypr/scripts/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/startup.sh -------------------------------------------------------------------------------- /hypr/scripts/timetracker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/timetracker.sh -------------------------------------------------------------------------------- /hypr/scripts/wallpaper-selector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hypr/scripts/wallpaper-selector.sh -------------------------------------------------------------------------------- /hyprpanel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hyprpanel/config.json -------------------------------------------------------------------------------- /hyprpanel/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hyprpanel/modules.json -------------------------------------------------------------------------------- /hyprpanel/modules.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/hyprpanel/modules.scss -------------------------------------------------------------------------------- /kanata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/kanata/README.md -------------------------------------------------------------------------------- /kanata/kanata.kbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/kanata/kanata.kbd -------------------------------------------------------------------------------- /kanata/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/kanata/setup.sh -------------------------------------------------------------------------------- /kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/kitty/kitty.conf -------------------------------------------------------------------------------- /monitors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/monitors.xml -------------------------------------------------------------------------------- /mpv/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/mpv/input.conf -------------------------------------------------------------------------------- /mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/mpv/mpv.conf -------------------------------------------------------------------------------- /nvim/.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/.neoconf.json -------------------------------------------------------------------------------- /nvim/.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/.stylua.toml -------------------------------------------------------------------------------- /nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/init.lua -------------------------------------------------------------------------------- /nvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lazy-lock.json -------------------------------------------------------------------------------- /nvim/lua/community.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/community.lua -------------------------------------------------------------------------------- /nvim/lua/config/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/config/debug.lua -------------------------------------------------------------------------------- /nvim/lua/config/macros.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/config/macros.lua -------------------------------------------------------------------------------- /nvim/lua/config/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/config/mappings.lua -------------------------------------------------------------------------------- /nvim/lua/lazy_setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/lazy_setup.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/astrolsp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/astrolsp.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/csvview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/csvview.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/dadbod.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/dadbod.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/flash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/flash.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/mason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/mason.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/mini-surround.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/mini-surround.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/neo-tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/neo-tree.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/neoscroll.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/neoscroll.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/render-markdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/render-markdown.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/treesitter.lua -------------------------------------------------------------------------------- /nvim/lua/plugins/user.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/plugins/user.lua -------------------------------------------------------------------------------- /nvim/lua/polish.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/polish.lua -------------------------------------------------------------------------------- /nvim/lua/unused-plugins/astrocore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/unused-plugins/astrocore.lua -------------------------------------------------------------------------------- /nvim/lua/unused-plugins/avante.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/unused-plugins/avante.lua -------------------------------------------------------------------------------- /nvim/lua/unused-plugins/none-ls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/unused-plugins/none-ls.lua -------------------------------------------------------------------------------- /nvim/lua/unused-plugins/obsidian.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/unused-plugins/obsidian.lua -------------------------------------------------------------------------------- /nvim/lua/unused-plugins/supermaven.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/unused-plugins/supermaven.lua -------------------------------------------------------------------------------- /nvim/lua/unused-plugins/windsurf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/lua/unused-plugins/windsurf.lua -------------------------------------------------------------------------------- /nvim/neovim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/neovim.yml -------------------------------------------------------------------------------- /nvim/selene.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/nvim/selene.toml -------------------------------------------------------------------------------- /playerctl/playerctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/playerctl/playerctl.conf -------------------------------------------------------------------------------- /posting/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/posting/config.yaml -------------------------------------------------------------------------------- /qBittorrent/themes/darkstylesheet.qbtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/qBittorrent/themes/darkstylesheet.qbtheme -------------------------------------------------------------------------------- /qutebrowser/autoconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/qutebrowser/autoconfig.yml -------------------------------------------------------------------------------- /qutebrowser/bookmarks/urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/qutebrowser/bookmarks/urls -------------------------------------------------------------------------------- /qutebrowser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/qutebrowser/config.py -------------------------------------------------------------------------------- /qutebrowser/quickmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/rofi/config.rasi -------------------------------------------------------------------------------- /rofi/power.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/rofi/power.rasi -------------------------------------------------------------------------------- /rofi/power.rasi.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/rofi/power.rasi.bkp -------------------------------------------------------------------------------- /rofi/themes/catppuccin-transparent.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/rofi/themes/catppuccin-transparent.rasi -------------------------------------------------------------------------------- /rofi/themes/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/rofi/themes/catppuccin.rasi -------------------------------------------------------------------------------- /screenshots/control-center1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/control-center1.png -------------------------------------------------------------------------------- /screenshots/control-center2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/control-center2.png -------------------------------------------------------------------------------- /screenshots/control-center3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/control-center3.png -------------------------------------------------------------------------------- /screenshots/desktop-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/desktop-overview.png -------------------------------------------------------------------------------- /screenshots/hyprpanel-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/hyprpanel-preview.png -------------------------------------------------------------------------------- /screenshots/kitty-terminal-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/kitty-terminal-preview.png -------------------------------------------------------------------------------- /screenshots/music-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/music-player.png -------------------------------------------------------------------------------- /screenshots/neovim-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/neovim-preview.png -------------------------------------------------------------------------------- /screenshots/power-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/power-menu.png -------------------------------------------------------------------------------- /screenshots/rofi-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/rofi-preview.png -------------------------------------------------------------------------------- /screenshots/tmux-full-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/tmux-full-preview.png -------------------------------------------------------------------------------- /screenshots/tmux-status-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/tmux-status-line.png -------------------------------------------------------------------------------- /screenshots/zathura-pdf-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/screenshots/zathura-pdf-viewer.png -------------------------------------------------------------------------------- /scripts/firmware-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/firmware-update.sh -------------------------------------------------------------------------------- /scripts/install-apps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/install-apps.sh -------------------------------------------------------------------------------- /scripts/pacman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/pacman.txt -------------------------------------------------------------------------------- /scripts/remove-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/remove-pkg.sh -------------------------------------------------------------------------------- /scripts/timewarrior-graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/timewarrior-graph.sh -------------------------------------------------------------------------------- /scripts/timewarrior-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/timewarrior-status.sh -------------------------------------------------------------------------------- /scripts/tmux-open-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/tmux-open-github.sh -------------------------------------------------------------------------------- /scripts/tmux-open-pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/tmux-open-pdf.sh -------------------------------------------------------------------------------- /scripts/tmux-session-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/tmux-session-manager.sh -------------------------------------------------------------------------------- /scripts/tmux-sessionizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/tmux-sessionizer.sh -------------------------------------------------------------------------------- /scripts/yay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/scripts/yay.txt -------------------------------------------------------------------------------- /tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/tmux/tmux.conf -------------------------------------------------------------------------------- /tmux/tmux.conf.catppuccin.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/tmux/tmux.conf.catppuccin.bkp -------------------------------------------------------------------------------- /user-flags.conf.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/user-flags.conf.bkp -------------------------------------------------------------------------------- /vimium-config-20251014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/vimium-config-20251014.json -------------------------------------------------------------------------------- /waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/waybar/config -------------------------------------------------------------------------------- /waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/waybar/style.css -------------------------------------------------------------------------------- /waypaper/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/waypaper/config.ini -------------------------------------------------------------------------------- /yazi/flavors/catppuccin-mocha.yazi/DO_NOT_MODIFY_ANYTHING_IN_THIS_DIRECTORY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yazi/flavors/catppuccin-mocha.yazi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/catppuccin-mocha.yazi/LICENSE -------------------------------------------------------------------------------- /yazi/flavors/catppuccin-mocha.yazi/LICENSE-tmtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/catppuccin-mocha.yazi/LICENSE-tmtheme -------------------------------------------------------------------------------- /yazi/flavors/catppuccin-mocha.yazi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/catppuccin-mocha.yazi/README.md -------------------------------------------------------------------------------- /yazi/flavors/catppuccin-mocha.yazi/flavor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/catppuccin-mocha.yazi/flavor.toml -------------------------------------------------------------------------------- /yazi/flavors/catppuccin-mocha.yazi/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/catppuccin-mocha.yazi/preview.png -------------------------------------------------------------------------------- /yazi/flavors/catppuccin-mocha.yazi/tmtheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/catppuccin-mocha.yazi/tmtheme.xml -------------------------------------------------------------------------------- /yazi/flavors/tokyonight-night.yazi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/tokyonight-night.yazi/LICENSE -------------------------------------------------------------------------------- /yazi/flavors/tokyonight-night.yazi/LICENSE-tmtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/tokyonight-night.yazi/LICENSE-tmtheme -------------------------------------------------------------------------------- /yazi/flavors/tokyonight-night.yazi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/tokyonight-night.yazi/README.md -------------------------------------------------------------------------------- /yazi/flavors/tokyonight-night.yazi/flavor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/tokyonight-night.yazi/flavor.toml -------------------------------------------------------------------------------- /yazi/flavors/tokyonight-night.yazi/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/tokyonight-night.yazi/preview.png -------------------------------------------------------------------------------- /yazi/flavors/tokyonight-night.yazi/tmtheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/flavors/tokyonight-night.yazi/tmtheme.xml -------------------------------------------------------------------------------- /yazi/package.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/package.toml -------------------------------------------------------------------------------- /yazi/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/theme.toml -------------------------------------------------------------------------------- /yazi/yazi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/yazi.toml -------------------------------------------------------------------------------- /yazi/yazi.toml-1750337882441334: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/yazi/yazi.toml-1750337882441334 -------------------------------------------------------------------------------- /zathura/zathurarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/zathura/zathurarc -------------------------------------------------------------------------------- /zed/keymap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/zed/keymap.json -------------------------------------------------------------------------------- /zed/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/zed/settings.json -------------------------------------------------------------------------------- /zshrc-symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binoymanoj/dotfiles/HEAD/zshrc-symlink.sh --------------------------------------------------------------------------------