├── .Xresources ├── .config ├── Thunar │ └── uca.xml ├── autorandr │ ├── docked │ │ ├── config │ │ └── setup │ └── undocked │ │ ├── config │ │ └── setup ├── bspwm │ ├── bspwmrc │ ├── external_rules │ ├── resize │ │ ├── README.md │ │ ├── expandx.sh │ │ ├── expandy.sh │ │ ├── shrinkx.sh │ │ └── shrinky.sh │ └── scripts │ │ ├── autostart.sh │ │ ├── bspfloat.sh │ │ ├── hidePolybar.sh │ │ ├── i3lock-fancy │ │ ├── circlelock.png │ │ ├── circlelockdark.png │ │ └── i3lock-fancy.sh │ │ ├── low_bat_notifier.sh │ │ ├── reset_mute.sh │ │ ├── welcome.sh │ │ └── winmask.sh ├── btop │ └── btop.conf ├── cmus │ ├── autosave │ ├── cache │ ├── command-history │ ├── lib.pl │ ├── playlists │ │ └── default │ └── search-history ├── dunst │ ├── dunstrc │ ├── icons │ │ ├── brightness.svg │ │ ├── skull.svg │ │ ├── volume-mute.svg │ │ ├── volume.svg │ │ └── welcome.svg │ └── sounds │ │ ├── break.wav │ │ ├── pause.wav │ │ └── work.wav ├── espanso │ ├── config │ │ └── default.yml │ └── match │ │ └── base.yml ├── eww │ └── dashboard │ │ ├── eww.scss │ │ ├── eww.yuck │ │ ├── images │ │ ├── bg.jpg │ │ ├── icons │ │ │ ├── chrome.svg │ │ │ ├── discord.svg │ │ │ ├── top.svg │ │ │ └── tr.svg │ │ ├── music.png │ │ └── s.png │ │ ├── launch_dashboard │ │ └── scripts │ │ ├── cava │ │ ├── mails │ │ ├── music_info │ │ ├── open_apps │ │ ├── open_folders │ │ ├── open_links │ │ └── weather_info ├── feh │ ├── keys │ └── themes ├── fish │ ├── .gitignore │ ├── config.fish │ └── fish_plugins ├── gotop │ └── gotop.conf ├── htop │ ├── htoprc │ └── htoprc.old ├── kitty │ └── kitty.conf ├── micro │ ├── backups │ │ ├── %home%clo%.config%conky%conky.conf │ │ ├── %home%clo%.config%polybar%launch.sh │ │ ├── %home%clo%Загрузки%dotfiles-bspwm-main%polybar%config.ini │ │ └── %home%clo%Загрузки%dotifles-master%.config%polybar%configs%normal%utils.ini │ ├── bindings.json │ ├── buffers │ │ └── history │ ├── rc.conf │ └── settings.json ├── mpd │ ├── db │ ├── mpd.conf │ ├── state │ └── sticker.sql ├── ncmpcpp │ ├── art-dark.sh │ ├── art-light.sh │ ├── bindings │ ├── config │ ├── config-art │ ├── config-art-dark │ ├── config-minimal │ └── error.log ├── neofetch │ ├── ascii │ ├── config.conf │ ├── logo.png │ └── logo2.png ├── nvim │ └── lua │ │ └── user │ │ └── init.lua ├── picom.conf ├── polybar │ ├── .module │ ├── .system │ ├── colors.ini │ ├── config.ini │ ├── launch.sh │ ├── modules.ini │ ├── scripts │ │ ├── bluetooth.sh │ │ ├── calendar.sh │ │ ├── cava.sh │ │ ├── checkUpdates.sh │ │ ├── cns.sh │ │ ├── env.sh │ │ ├── pomo.sh │ │ ├── redshift.sh │ │ └── toggle_bluetooth.sh │ └── system ├── ranger │ ├── __pycache__ │ │ ├── devicons.cpython-310.opt-1.pyc │ │ └── devicons.cpython-39.opt-1.pyc │ ├── commands.py │ ├── devicons.py │ ├── plugins │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.opt-1.pyc │ │ │ ├── __init__.cpython-39.opt-1.pyc │ │ │ ├── devicons_linemode.cpython-310.opt-1.pyc │ │ │ └── devicons_linemode.cpython-39.opt-1.pyc │ │ └── devicons_linemode.py │ ├── rc.conf │ ├── rifle.conf │ └── scope.sh ├── redshift │ └── redshift.conf ├── rofi │ ├── askpass.rasi │ ├── bluetooth.sh │ ├── cloud.rasi │ ├── colors.rasi │ ├── config.rasi │ ├── confirm.rasi │ ├── confirm.sh │ ├── powermenu.rasi │ ├── powermenu.sh │ ├── terminal.sh │ ├── wifi.rasi │ ├── wifi.sh │ └── window.rasi ├── sxhkd │ ├── scripts │ │ ├── brightness.sh │ │ ├── bselect.sh │ │ ├── bsmove.sh │ │ ├── cashe.sh │ │ ├── install.sh │ │ ├── randompass.sh │ │ ├── remove.sh │ │ ├── toggle_float.sh │ │ ├── toogle_bar_bottom.sh │ │ ├── touchpad.sh │ │ ├── volume.sh │ │ └── wpm_reports.sh │ └── sxhkdrc ├── wedder │ └── wedder.toml └── yay │ └── config.json ├── .gitconfig ├── .xinitrc ├── .xprofile ├── .xsettingsd ├── README.md ├── coppy_configs.sh ├── install_packages.sh ├── push.sh ├── screen.png └── tabliss.json /.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.Xresources -------------------------------------------------------------------------------- /.config/Thunar/uca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/Thunar/uca.xml -------------------------------------------------------------------------------- /.config/autorandr/docked/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/autorandr/docked/config -------------------------------------------------------------------------------- /.config/autorandr/docked/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/autorandr/docked/setup -------------------------------------------------------------------------------- /.config/autorandr/undocked/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/autorandr/undocked/config -------------------------------------------------------------------------------- /.config/autorandr/undocked/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/autorandr/undocked/setup -------------------------------------------------------------------------------- /.config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/bspwmrc -------------------------------------------------------------------------------- /.config/bspwm/external_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/external_rules -------------------------------------------------------------------------------- /.config/bspwm/resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/resize/README.md -------------------------------------------------------------------------------- /.config/bspwm/resize/expandx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/resize/expandx.sh -------------------------------------------------------------------------------- /.config/bspwm/resize/expandy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/resize/expandy.sh -------------------------------------------------------------------------------- /.config/bspwm/resize/shrinkx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/resize/shrinkx.sh -------------------------------------------------------------------------------- /.config/bspwm/resize/shrinky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/resize/shrinky.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/autostart.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/bspfloat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/bspfloat.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/hidePolybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/hidePolybar.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/i3lock-fancy/circlelock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/i3lock-fancy/circlelock.png -------------------------------------------------------------------------------- /.config/bspwm/scripts/i3lock-fancy/circlelockdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/i3lock-fancy/circlelockdark.png -------------------------------------------------------------------------------- /.config/bspwm/scripts/i3lock-fancy/i3lock-fancy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/i3lock-fancy/i3lock-fancy.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/low_bat_notifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/low_bat_notifier.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/reset_mute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/reset_mute.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/welcome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/welcome.sh -------------------------------------------------------------------------------- /.config/bspwm/scripts/winmask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/bspwm/scripts/winmask.sh -------------------------------------------------------------------------------- /.config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/btop/btop.conf -------------------------------------------------------------------------------- /.config/cmus/autosave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/cmus/autosave -------------------------------------------------------------------------------- /.config/cmus/cache: -------------------------------------------------------------------------------- 1 | CTC  -------------------------------------------------------------------------------- /.config/cmus/command-history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/cmus/lib.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/cmus/playlists/default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/cmus/search-history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/dunstrc -------------------------------------------------------------------------------- /.config/dunst/icons/brightness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/icons/brightness.svg -------------------------------------------------------------------------------- /.config/dunst/icons/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/icons/skull.svg -------------------------------------------------------------------------------- /.config/dunst/icons/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/icons/volume-mute.svg -------------------------------------------------------------------------------- /.config/dunst/icons/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/icons/volume.svg -------------------------------------------------------------------------------- /.config/dunst/icons/welcome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/icons/welcome.svg -------------------------------------------------------------------------------- /.config/dunst/sounds/break.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/sounds/break.wav -------------------------------------------------------------------------------- /.config/dunst/sounds/pause.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/sounds/pause.wav -------------------------------------------------------------------------------- /.config/dunst/sounds/work.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/dunst/sounds/work.wav -------------------------------------------------------------------------------- /.config/espanso/config/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/espanso/config/default.yml -------------------------------------------------------------------------------- /.config/espanso/match/base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/espanso/match/base.yml -------------------------------------------------------------------------------- /.config/eww/dashboard/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/eww.scss -------------------------------------------------------------------------------- /.config/eww/dashboard/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/eww.yuck -------------------------------------------------------------------------------- /.config/eww/dashboard/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/images/bg.jpg -------------------------------------------------------------------------------- /.config/eww/dashboard/images/icons/chrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/images/icons/chrome.svg -------------------------------------------------------------------------------- /.config/eww/dashboard/images/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/images/icons/discord.svg -------------------------------------------------------------------------------- /.config/eww/dashboard/images/icons/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/images/icons/top.svg -------------------------------------------------------------------------------- /.config/eww/dashboard/images/icons/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/images/icons/tr.svg -------------------------------------------------------------------------------- /.config/eww/dashboard/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/images/music.png -------------------------------------------------------------------------------- /.config/eww/dashboard/images/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/images/s.png -------------------------------------------------------------------------------- /.config/eww/dashboard/launch_dashboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/launch_dashboard -------------------------------------------------------------------------------- /.config/eww/dashboard/scripts/cava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/scripts/cava -------------------------------------------------------------------------------- /.config/eww/dashboard/scripts/mails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/scripts/mails -------------------------------------------------------------------------------- /.config/eww/dashboard/scripts/music_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/scripts/music_info -------------------------------------------------------------------------------- /.config/eww/dashboard/scripts/open_apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/scripts/open_apps -------------------------------------------------------------------------------- /.config/eww/dashboard/scripts/open_folders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/scripts/open_folders -------------------------------------------------------------------------------- /.config/eww/dashboard/scripts/open_links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/scripts/open_links -------------------------------------------------------------------------------- /.config/eww/dashboard/scripts/weather_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/eww/dashboard/scripts/weather_info -------------------------------------------------------------------------------- /.config/feh/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/feh/keys -------------------------------------------------------------------------------- /.config/feh/themes: -------------------------------------------------------------------------------- 1 | feh -Fd 2 | -------------------------------------------------------------------------------- /.config/fish/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/fish/.gitignore -------------------------------------------------------------------------------- /.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/fish/config.fish -------------------------------------------------------------------------------- /.config/fish/fish_plugins: -------------------------------------------------------------------------------- 1 | jorgebucaran/fisher 2 | ilancosman/tide@v5 3 | -------------------------------------------------------------------------------- /.config/gotop/gotop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/gotop/gotop.conf -------------------------------------------------------------------------------- /.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/htop/htoprc -------------------------------------------------------------------------------- /.config/htop/htoprc.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/htop/htoprc.old -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /.config/micro/backups/%home%clo%.config%conky%conky.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/backups/%home%clo%.config%conky%conky.conf -------------------------------------------------------------------------------- /.config/micro/backups/%home%clo%.config%polybar%launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/backups/%home%clo%.config%polybar%launch.sh -------------------------------------------------------------------------------- /.config/micro/backups/%home%clo%Загрузки%dotfiles-bspwm-main%polybar%config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/backups/%home%clo%Загрузки%dotfiles-bspwm-main%polybar%config.ini -------------------------------------------------------------------------------- /.config/micro/backups/%home%clo%Загрузки%dotifles-master%.config%polybar%configs%normal%utils.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/backups/%home%clo%Загрузки%dotifles-master%.config%polybar%configs%normal%utils.ini -------------------------------------------------------------------------------- /.config/micro/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/bindings.json -------------------------------------------------------------------------------- /.config/micro/buffers/history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/buffers/history -------------------------------------------------------------------------------- /.config/micro/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/rc.conf -------------------------------------------------------------------------------- /.config/micro/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/micro/settings.json -------------------------------------------------------------------------------- /.config/mpd/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/mpd/db -------------------------------------------------------------------------------- /.config/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/mpd/mpd.conf -------------------------------------------------------------------------------- /.config/mpd/state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/mpd/state -------------------------------------------------------------------------------- /.config/mpd/sticker.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/mpd/sticker.sql -------------------------------------------------------------------------------- /.config/ncmpcpp/art-dark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ncmpcpp/art-dark.sh -------------------------------------------------------------------------------- /.config/ncmpcpp/art-light.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ncmpcpp/art-light.sh -------------------------------------------------------------------------------- /.config/ncmpcpp/bindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ncmpcpp/bindings -------------------------------------------------------------------------------- /.config/ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ncmpcpp/config -------------------------------------------------------------------------------- /.config/ncmpcpp/config-art: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ncmpcpp/config-art -------------------------------------------------------------------------------- /.config/ncmpcpp/config-art-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ncmpcpp/config-art-dark -------------------------------------------------------------------------------- /.config/ncmpcpp/config-minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ncmpcpp/config-minimal -------------------------------------------------------------------------------- /.config/ncmpcpp/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/neofetch/ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/neofetch/ascii -------------------------------------------------------------------------------- /.config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/neofetch/config.conf -------------------------------------------------------------------------------- /.config/neofetch/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/neofetch/logo.png -------------------------------------------------------------------------------- /.config/neofetch/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/neofetch/logo2.png -------------------------------------------------------------------------------- /.config/nvim/lua/user/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/nvim/lua/user/init.lua -------------------------------------------------------------------------------- /.config/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/picom.conf -------------------------------------------------------------------------------- /.config/polybar/.module: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/polybar/.system: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/polybar/colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/colors.ini -------------------------------------------------------------------------------- /.config/polybar/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/config.ini -------------------------------------------------------------------------------- /.config/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/launch.sh -------------------------------------------------------------------------------- /.config/polybar/modules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/modules.ini -------------------------------------------------------------------------------- /.config/polybar/scripts/bluetooth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/bluetooth.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/calendar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/calendar.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/cava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/cava.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/checkUpdates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/checkUpdates.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/cns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/cns.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/env.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/pomo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/pomo.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/redshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/redshift.sh -------------------------------------------------------------------------------- /.config/polybar/scripts/toggle_bluetooth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/scripts/toggle_bluetooth.sh -------------------------------------------------------------------------------- /.config/polybar/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/polybar/system -------------------------------------------------------------------------------- /.config/ranger/__pycache__/devicons.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/__pycache__/devicons.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/__pycache__/devicons.cpython-39.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/__pycache__/devicons.cpython-39.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/commands.py -------------------------------------------------------------------------------- /.config/ranger/devicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/devicons.py -------------------------------------------------------------------------------- /.config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/plugins/__pycache__/__init__.cpython-39.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/plugins/__pycache__/__init__.cpython-39.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/plugins/__pycache__/devicons_linemode.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/plugins/__pycache__/devicons_linemode.cpython-39.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/plugins/__pycache__/devicons_linemode.cpython-39.opt-1.pyc -------------------------------------------------------------------------------- /.config/ranger/plugins/devicons_linemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/plugins/devicons_linemode.py -------------------------------------------------------------------------------- /.config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/rc.conf -------------------------------------------------------------------------------- /.config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/rifle.conf -------------------------------------------------------------------------------- /.config/ranger/scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/ranger/scope.sh -------------------------------------------------------------------------------- /.config/redshift/redshift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/redshift/redshift.conf -------------------------------------------------------------------------------- /.config/rofi/askpass.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/askpass.rasi -------------------------------------------------------------------------------- /.config/rofi/bluetooth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/bluetooth.sh -------------------------------------------------------------------------------- /.config/rofi/cloud.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/cloud.rasi -------------------------------------------------------------------------------- /.config/rofi/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/colors.rasi -------------------------------------------------------------------------------- /.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/config.rasi -------------------------------------------------------------------------------- /.config/rofi/confirm.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/confirm.rasi -------------------------------------------------------------------------------- /.config/rofi/confirm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/confirm.sh -------------------------------------------------------------------------------- /.config/rofi/powermenu.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/powermenu.rasi -------------------------------------------------------------------------------- /.config/rofi/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/powermenu.sh -------------------------------------------------------------------------------- /.config/rofi/terminal.sh: -------------------------------------------------------------------------------- 1 | 2 | #!/bin/bash 3 | kitty -e "$@" 4 | -------------------------------------------------------------------------------- /.config/rofi/wifi.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/wifi.rasi -------------------------------------------------------------------------------- /.config/rofi/wifi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/wifi.sh -------------------------------------------------------------------------------- /.config/rofi/window.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/rofi/window.rasi -------------------------------------------------------------------------------- /.config/sxhkd/scripts/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/brightness.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/bselect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/bselect.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/bsmove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/bsmove.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/cashe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/cashe.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/install.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/randompass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/randompass.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/remove.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/toggle_float.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/toggle_float.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/toogle_bar_bottom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/toogle_bar_bottom.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/touchpad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/touchpad.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/volume.sh -------------------------------------------------------------------------------- /.config/sxhkd/scripts/wpm_reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/scripts/wpm_reports.sh -------------------------------------------------------------------------------- /.config/sxhkd/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/sxhkd/sxhkdrc -------------------------------------------------------------------------------- /.config/wedder/wedder.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/wedder/wedder.toml -------------------------------------------------------------------------------- /.config/yay/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.config/yay/config.json -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.xinitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.xinitrc -------------------------------------------------------------------------------- /.xprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.xprofile -------------------------------------------------------------------------------- /.xsettingsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/.xsettingsd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /coppy_configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/coppy_configs.sh -------------------------------------------------------------------------------- /install_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/install_packages.sh -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/push.sh -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/screen.png -------------------------------------------------------------------------------- /tabliss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudy1gor/bspwm_dotfiles/HEAD/tabliss.json --------------------------------------------------------------------------------