├── .bashrc ├── .fonts ├── .uuid ├── Font Awesome 5 Brands-Regular-400.otf ├── Font Awesome 5 Free-Regular-400.otf ├── Font Awesome 5 Free-Solid-900.otf └── fontawesome-webfont.ttf ├── LICENSE ├── chaotic-mirrorlist ├── i3 └── config ├── i3blocks ├── battery-n │ └── battery-n ├── battery │ ├── README.md │ ├── battery │ ├── battery.png │ ├── getpercent.js │ ├── getstatus.js │ ├── i3blocks.conf │ └── index.js ├── batterybar │ ├── LICENSE │ ├── README.md │ ├── batterybar │ └── screenshot.png ├── config ├── memory │ ├── README.md │ ├── i3blocks.conf │ ├── memory │ └── memory.png ├── time │ ├── LICENSE │ ├── README.md │ ├── i3blocks.conf │ ├── time │ └── time.png ├── volume │ ├── README.md │ ├── i3blocks.conf │ ├── volume │ └── volume.png └── wifi │ ├── README.md │ ├── i3blocks.conf │ ├── wifi │ └── wifi.png ├── nvim ├── coc-settings.json └── init.vim ├── pacman.conf ├── setupi3 └── xorg.conf.d └── 90-touchpad.conf /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.fonts/.uuid: -------------------------------------------------------------------------------- 1 | 66aadc84-29d0-4a0d-9215-367b60787f74 -------------------------------------------------------------------------------- /.fonts/Font Awesome 5 Brands-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/.fonts/Font Awesome 5 Brands-Regular-400.otf -------------------------------------------------------------------------------- /.fonts/Font Awesome 5 Free-Regular-400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/.fonts/Font Awesome 5 Free-Regular-400.otf -------------------------------------------------------------------------------- /.fonts/Font Awesome 5 Free-Solid-900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/.fonts/Font Awesome 5 Free-Solid-900.otf -------------------------------------------------------------------------------- /.fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/.fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /chaotic-mirrorlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/chaotic-mirrorlist -------------------------------------------------------------------------------- /i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3/config -------------------------------------------------------------------------------- /i3blocks/battery-n/battery-n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery-n/battery-n -------------------------------------------------------------------------------- /i3blocks/battery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery/README.md -------------------------------------------------------------------------------- /i3blocks/battery/battery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery/battery -------------------------------------------------------------------------------- /i3blocks/battery/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery/battery.png -------------------------------------------------------------------------------- /i3blocks/battery/getpercent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery/getpercent.js -------------------------------------------------------------------------------- /i3blocks/battery/getstatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery/getstatus.js -------------------------------------------------------------------------------- /i3blocks/battery/i3blocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery/i3blocks.conf -------------------------------------------------------------------------------- /i3blocks/battery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/battery/index.js -------------------------------------------------------------------------------- /i3blocks/batterybar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/batterybar/LICENSE -------------------------------------------------------------------------------- /i3blocks/batterybar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/batterybar/README.md -------------------------------------------------------------------------------- /i3blocks/batterybar/batterybar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/batterybar/batterybar -------------------------------------------------------------------------------- /i3blocks/batterybar/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/batterybar/screenshot.png -------------------------------------------------------------------------------- /i3blocks/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/config -------------------------------------------------------------------------------- /i3blocks/memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/memory/README.md -------------------------------------------------------------------------------- /i3blocks/memory/i3blocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/memory/i3blocks.conf -------------------------------------------------------------------------------- /i3blocks/memory/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/memory/memory -------------------------------------------------------------------------------- /i3blocks/memory/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/memory/memory.png -------------------------------------------------------------------------------- /i3blocks/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/time/LICENSE -------------------------------------------------------------------------------- /i3blocks/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/time/README.md -------------------------------------------------------------------------------- /i3blocks/time/i3blocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/time/i3blocks.conf -------------------------------------------------------------------------------- /i3blocks/time/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/time/time -------------------------------------------------------------------------------- /i3blocks/time/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/time/time.png -------------------------------------------------------------------------------- /i3blocks/volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/volume/README.md -------------------------------------------------------------------------------- /i3blocks/volume/i3blocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/volume/i3blocks.conf -------------------------------------------------------------------------------- /i3blocks/volume/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/volume/volume -------------------------------------------------------------------------------- /i3blocks/volume/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/volume/volume.png -------------------------------------------------------------------------------- /i3blocks/wifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/wifi/README.md -------------------------------------------------------------------------------- /i3blocks/wifi/i3blocks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/wifi/i3blocks.conf -------------------------------------------------------------------------------- /i3blocks/wifi/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/wifi/wifi -------------------------------------------------------------------------------- /i3blocks/wifi/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/i3blocks/wifi/wifi.png -------------------------------------------------------------------------------- /nvim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/nvim/coc-settings.json -------------------------------------------------------------------------------- /nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/nvim/init.vim -------------------------------------------------------------------------------- /pacman.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/pacman.conf -------------------------------------------------------------------------------- /setupi3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/setupi3 -------------------------------------------------------------------------------- /xorg.conf.d/90-touchpad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hafizur046/dotfiles/HEAD/xorg.conf.d/90-touchpad.conf --------------------------------------------------------------------------------