├── .vimrc ├── 40-libinput.conf ├── MyScripts ├── batteryTracker ├── capture └── src │ ├── Makefile │ ├── timer.c │ └── toogle-timer.c ├── README.md ├── Xresources ├── bspwm └── bspwmrc ├── compton.conf ├── dunst └── dunstrc ├── fonts ├── icomoon.ttf └── icomoon.woff ├── init.nvim ├── polybar └── config ├── rofi ├── config ├── green.rasi └── material.rasi ├── screenshots ├── screenshot0.png └── screenshot1.png ├── sxhkd ├── bak └── sxhkdrc ├── vimrc ├── wallpapers ├── dnord4k_dark.png ├── wallpaper0.png ├── wallpaper1.jpg └── wallpaper2.png └── zshrc /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /40-libinput.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/40-libinput.conf -------------------------------------------------------------------------------- /MyScripts/batteryTracker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/MyScripts/batteryTracker -------------------------------------------------------------------------------- /MyScripts/capture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/MyScripts/capture -------------------------------------------------------------------------------- /MyScripts/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/MyScripts/src/Makefile -------------------------------------------------------------------------------- /MyScripts/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/MyScripts/src/timer.c -------------------------------------------------------------------------------- /MyScripts/src/toogle-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/MyScripts/src/toogle-timer.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/Xresources -------------------------------------------------------------------------------- /bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/bspwm/bspwmrc -------------------------------------------------------------------------------- /compton.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/compton.conf -------------------------------------------------------------------------------- /dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/dunst/dunstrc -------------------------------------------------------------------------------- /fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/fonts/icomoon.ttf -------------------------------------------------------------------------------- /fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/fonts/icomoon.woff -------------------------------------------------------------------------------- /init.nvim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/init.nvim -------------------------------------------------------------------------------- /polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/polybar/config -------------------------------------------------------------------------------- /rofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/rofi/config -------------------------------------------------------------------------------- /rofi/green.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/rofi/green.rasi -------------------------------------------------------------------------------- /rofi/material.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/rofi/material.rasi -------------------------------------------------------------------------------- /screenshots/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/screenshots/screenshot0.png -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /sxhkd/bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/sxhkd/bak -------------------------------------------------------------------------------- /sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/vimrc -------------------------------------------------------------------------------- /wallpapers/dnord4k_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/wallpapers/dnord4k_dark.png -------------------------------------------------------------------------------- /wallpapers/wallpaper0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/wallpapers/wallpaper0.png -------------------------------------------------------------------------------- /wallpapers/wallpaper1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/wallpapers/wallpaper1.jpg -------------------------------------------------------------------------------- /wallpapers/wallpaper2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/wallpapers/wallpaper2.png -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mohanbarman/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------