├── README.md ├── app support ├── bsp-layout-0.0.10-1-any.pkg.tar.zst ├── eww.zip ├── networkmanager-dmenu-main.zip ├── nvim-linux64-0-9-2.deb ├── ps_mem-3.14-2-any.pkg.tar.zst ├── rofi-greenclip-4.2-2-x86_64.pkg.tar.zst ├── tdrop-0.5.0-1-any.pkg.tar.zst ├── xqp-0.1-2-x86_64.pkg.tar.zst └── xtitle-0.4.4-2-x86_64.pkg.tar.zst ├── config ├── Thunar │ ├── accels.scm │ └── uca.xml ├── alacritty │ ├── alacritty.yml │ ├── colors-light.yml │ ├── colors-material.yml │ ├── colors.yml │ ├── fonts.yml │ └── ncmpcpp.yml ├── bspwm │ ├── assets │ │ ├── brightness.svg │ │ ├── cancel.svg │ │ ├── close-small.svg │ │ ├── close.svg │ │ ├── closew.svg │ │ ├── dark2.png │ │ ├── fallback.webp │ │ ├── floating.svg │ │ ├── fullscreen.svg │ │ ├── harddisk.svg │ │ ├── max.svg │ │ ├── mute.png │ │ ├── reload.svg │ │ ├── ryan.png │ │ ├── screenshot.svg │ │ ├── vol.png │ │ └── vol1.png │ ├── bspwmrc │ ├── dunstrc │ ├── picom.conf │ ├── ryan │ │ ├── config.ini │ │ ├── gylphs.ini │ │ ├── modules.ini │ │ ├── scripts │ │ │ ├── bluetooth │ │ │ ├── get-spotify-status │ │ │ ├── lock │ │ │ ├── microphone │ │ │ ├── scroll-spotify │ │ │ ├── toggle-bluetooth │ │ │ ├── tray │ │ │ └── tray-status │ │ ├── src │ │ │ └── eww │ │ │ │ ├── actions │ │ │ │ ├── actions.scss │ │ │ │ └── actions.yuck │ │ │ │ ├── assets │ │ │ │ ├── default-pfp.png │ │ │ │ └── fallback.png │ │ │ │ ├── bar │ │ │ │ ├── bar.scss │ │ │ │ └── bar.yuck │ │ │ │ ├── colors.scss │ │ │ │ ├── dashboard │ │ │ │ ├── dashboard.scss │ │ │ │ └── dashboard.yuck │ │ │ │ ├── date │ │ │ │ ├── date.scss │ │ │ │ └── date.yuck │ │ │ │ ├── eww.scss │ │ │ │ ├── eww.yuck │ │ │ │ ├── powermenu │ │ │ │ ├── powermenu.scss │ │ │ │ └── powermenu.yuck │ │ │ │ ├── scripts │ │ │ │ ├── bluetooth │ │ │ │ ├── brightness.sh │ │ │ │ ├── bsplayout │ │ │ │ ├── cpu.sh │ │ │ │ ├── detaileww │ │ │ │ ├── disk.sh │ │ │ │ ├── dripshot │ │ │ │ ├── exec │ │ │ │ ├── mic │ │ │ │ ├── music │ │ │ │ │ ├── control.sh │ │ │ │ │ ├── songart.sh │ │ │ │ │ └── songdata.sh │ │ │ │ ├── network.sh │ │ │ │ ├── networkmenu.sh │ │ │ │ ├── pfp.sh │ │ │ │ ├── popup │ │ │ │ ├── ram.sh │ │ │ │ ├── redshift │ │ │ │ ├── sauceshot │ │ │ │ ├── temp.sh │ │ │ │ ├── updates │ │ │ │ ├── user.sh │ │ │ │ ├── volume.sh │ │ │ │ ├── windowtitle │ │ │ │ └── workspaces │ │ │ │ └── variables.yuck │ │ └── walls │ │ │ ├── ryan-1.jpg │ │ │ ├── ryan-2.jpg │ │ │ ├── ryan-3.png │ │ │ ├── ryan-4.png │ │ │ ├── ryan-5.webp │ │ │ ├── ryan-6.png │ │ │ ├── ryan-7.png │ │ │ ├── ryan-8.png │ │ │ └── ryan-9.png │ ├── script │ │ ├── bspfloat │ │ ├── current-layout │ │ ├── external-rules │ │ ├── fix-plank │ │ └── switch-layouts │ ├── scripts │ │ ├── .sys │ │ ├── Brightness │ │ ├── ExternalRules │ │ ├── KeybindingsHelp │ │ ├── MediaControl │ │ ├── ScreenShoTer │ │ ├── SetSysVars │ │ ├── Updates │ │ ├── Volume │ │ ├── Weather │ │ ├── autolock.sh │ │ ├── buttonmin.sh │ │ ├── clip.sh │ │ ├── clipboard.rasi │ │ ├── colorpicker │ │ ├── colors.ini │ │ ├── git_push.sh │ │ ├── keyboardhelp.rasi │ │ ├── launcher │ │ │ ├── colors │ │ │ │ ├── everforest.rasi │ │ │ │ └── tokyonight.rasi │ │ │ ├── launcher.sh │ │ │ ├── shared │ │ │ │ ├── colors.rasi │ │ │ │ └── fonts.rasi │ │ │ └── style.rasi │ │ ├── lock │ │ ├── network.rasi │ │ ├── openapps │ │ ├── rofi │ │ │ ├── config.rasi │ │ │ └── themes │ │ │ │ ├── dracula.rasi │ │ │ │ ├── everblush.rasi │ │ │ │ ├── forest.rasi │ │ │ │ ├── gruv.rasi │ │ │ │ ├── nord.rasi │ │ │ │ └── onedark.rasi │ │ ├── ss │ │ ├── ss.rasi │ │ ├── ss.sh │ │ ├── ss_time.rasi │ │ └── system.ini │ └── sxhkdrc ├── btop │ ├── btop.conf │ ├── btop.conf.txt │ ├── btop.log │ └── themes │ │ ├── gruvbox_dark.theme │ │ └── tokyo-night.theme ├── conky │ └── Auva │ │ ├── Auva.conf │ │ ├── Auva2.conf │ │ ├── Auva2side.conf │ │ ├── Auvaside.conf │ │ ├── fonts │ │ └── BIG JOHN.otf │ │ ├── res │ │ ├── g958.png │ │ └── red.png │ │ ├── scripts │ │ ├── Greeting.sh │ │ ├── lua │ │ │ └── rings-v1.2.1.lua │ │ └── weather.sh │ │ └── start.sh ├── dmenu │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── README.md │ ├── arg.h │ ├── config.def.h │ ├── config.mk │ ├── dmenu.1 │ ├── dmenu.c │ ├── dmenu_path │ ├── dmenu_run │ ├── drw.c │ ├── drw.h │ ├── patch │ │ ├── center.c │ │ ├── dynamicoptions.c │ │ ├── dynamicoptions.h │ │ ├── fuzzyhighlight.c │ │ ├── fuzzymatch.c │ │ ├── fzfexpect.c │ │ ├── fzfexpect.h │ │ ├── highlight.c │ │ ├── highpriority.c │ │ ├── highpriority.h │ │ ├── include.c │ │ ├── include.h │ │ ├── mousesupport.c │ │ ├── multiselect.c │ │ ├── multiselect.h │ │ ├── navhistory.c │ │ ├── nonblockingstdin.c │ │ ├── nonblockingstdin.h │ │ ├── numbers.c │ │ ├── numbers.h │ │ ├── scroll.c │ │ ├── scroll.h │ │ └── xresources.c │ ├── patches.def.h │ ├── stest.1 │ ├── stest.c │ ├── util.c │ └── util.h ├── greenclip.toml ├── gtk-3.0 │ ├── bookmarks │ └── settings.ini ├── jgmenu │ ├── MenuIcons │ │ ├── applications.png │ │ ├── bspwm.png │ │ ├── cancel.svg │ │ ├── dashboard.png │ │ ├── dwm.png │ │ ├── edit-note.png │ │ ├── exit.png │ │ ├── exitdwm.png │ │ ├── file-manager.png │ │ ├── music.png │ │ ├── restart.png │ │ ├── restartdwm.png │ │ ├── search.png │ │ ├── system-menu.png │ │ ├── terminal.png │ │ └── web-browser.png │ ├── jgmenurc │ └── prepend.csv ├── mpDris2 │ └── mpDris2.conf ├── mpd │ ├── log │ ├── mpd.conf │ ├── mpd.db │ ├── mpdstate │ ├── playlists │ │ └── .nomedia │ └── state ├── ncmpcpp │ ├── bindings │ ├── config │ └── error.log ├── neofetch │ └── config.conf ├── networkmanager-dmenu │ └── config.ini ├── nvim.zip ├── qt5ct │ ├── colors │ │ ├── Catppuccin-Latte.conf │ │ └── Catppuccin-Mocha.conf │ └── qt5ct.conf ├── ranger │ ├── colorschemes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.opt-1.pyc │ │ │ ├── __init__.cpython-311.opt-1.pyc │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── default.cpython-310.opt-1.pyc │ │ │ ├── default.cpython-311.opt-1.pyc │ │ │ └── default.cpython-311.pyc │ │ └── default.py │ ├── plugins │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.opt-1.pyc │ │ │ ├── __init__.cpython-311.opt-1.pyc │ │ │ └── __init__.cpython-311.pyc │ │ └── ranger_devicons │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.opt-1.pyc │ │ │ ├── __init__.cpython-311.opt-1.pyc │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── devicons.cpython-310.opt-1.pyc │ │ │ ├── devicons.cpython-311.opt-1.pyc │ │ │ └── devicons.cpython-311.pyc │ │ │ └── devicons.py │ ├── rc.conf │ └── rifle.conf ├── rofi │ └── config.rasi ├── tint2 │ └── tint2rc └── xfce4 │ ├── help.rc │ ├── helpers.rc │ ├── terminal │ └── terminalrc │ └── xfconf │ └── xfce-perchannel-xml │ ├── ristretto.xml │ ├── thunar-volman.xml │ └── thunar.xml ├── home ├── .Xresources ├── .face.png ├── .scripts │ └── HDSentinel ├── .xsessionrc └── .zshrc ├── local ├── bin │ ├── colorscript │ ├── hdd │ └── sysfetch └── share │ ├── applications │ ├── HDD Sentinel.desktop │ ├── nvim.desktop │ ├── ranger.desktop │ └── zfetch.desktop │ ├── asciiart │ ├── blocks1 │ ├── burger │ ├── colorbars │ ├── crunchbang │ ├── elfman │ ├── invader-fire-flower-m │ ├── kaisen │ ├── mario-xs │ ├── pacman │ ├── pacman-ghosts-l │ ├── pinguco │ ├── pizza │ ├── rupees │ ├── skullys │ ├── skullz │ ├── taco │ └── zwaves │ └── fonts │ └── fonts.zip └── ss ├── eww_bar.png ├── eww_bar2.png ├── launcher.png ├── neofetch.png ├── polybar_bar.png └── ss.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/README.md -------------------------------------------------------------------------------- /app support/bsp-layout-0.0.10-1-any.pkg.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/bsp-layout-0.0.10-1-any.pkg.tar.zst -------------------------------------------------------------------------------- /app support/eww.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/eww.zip -------------------------------------------------------------------------------- /app support/networkmanager-dmenu-main.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/networkmanager-dmenu-main.zip -------------------------------------------------------------------------------- /app support/nvim-linux64-0-9-2.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/nvim-linux64-0-9-2.deb -------------------------------------------------------------------------------- /app support/ps_mem-3.14-2-any.pkg.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/ps_mem-3.14-2-any.pkg.tar.zst -------------------------------------------------------------------------------- /app support/rofi-greenclip-4.2-2-x86_64.pkg.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/rofi-greenclip-4.2-2-x86_64.pkg.tar.zst -------------------------------------------------------------------------------- /app support/tdrop-0.5.0-1-any.pkg.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/tdrop-0.5.0-1-any.pkg.tar.zst -------------------------------------------------------------------------------- /app support/xqp-0.1-2-x86_64.pkg.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/xqp-0.1-2-x86_64.pkg.tar.zst -------------------------------------------------------------------------------- /app support/xtitle-0.4.4-2-x86_64.pkg.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/app support/xtitle-0.4.4-2-x86_64.pkg.tar.zst -------------------------------------------------------------------------------- /config/Thunar/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/Thunar/accels.scm -------------------------------------------------------------------------------- /config/Thunar/uca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/Thunar/uca.xml -------------------------------------------------------------------------------- /config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /config/alacritty/colors-light.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/alacritty/colors-light.yml -------------------------------------------------------------------------------- /config/alacritty/colors-material.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/alacritty/colors-material.yml -------------------------------------------------------------------------------- /config/alacritty/colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/alacritty/colors.yml -------------------------------------------------------------------------------- /config/alacritty/fonts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/alacritty/fonts.yml -------------------------------------------------------------------------------- /config/alacritty/ncmpcpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/alacritty/ncmpcpp.yml -------------------------------------------------------------------------------- /config/bspwm/assets/brightness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/brightness.svg -------------------------------------------------------------------------------- /config/bspwm/assets/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/cancel.svg -------------------------------------------------------------------------------- /config/bspwm/assets/close-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/close-small.svg -------------------------------------------------------------------------------- /config/bspwm/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/close.svg -------------------------------------------------------------------------------- /config/bspwm/assets/closew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/closew.svg -------------------------------------------------------------------------------- /config/bspwm/assets/dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/dark2.png -------------------------------------------------------------------------------- /config/bspwm/assets/fallback.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/fallback.webp -------------------------------------------------------------------------------- /config/bspwm/assets/floating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/floating.svg -------------------------------------------------------------------------------- /config/bspwm/assets/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/fullscreen.svg -------------------------------------------------------------------------------- /config/bspwm/assets/harddisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/harddisk.svg -------------------------------------------------------------------------------- /config/bspwm/assets/max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/max.svg -------------------------------------------------------------------------------- /config/bspwm/assets/mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/mute.png -------------------------------------------------------------------------------- /config/bspwm/assets/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/reload.svg -------------------------------------------------------------------------------- /config/bspwm/assets/ryan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/ryan.png -------------------------------------------------------------------------------- /config/bspwm/assets/screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/screenshot.svg -------------------------------------------------------------------------------- /config/bspwm/assets/vol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/vol.png -------------------------------------------------------------------------------- /config/bspwm/assets/vol1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/assets/vol1.png -------------------------------------------------------------------------------- /config/bspwm/bspwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/bspwmrc -------------------------------------------------------------------------------- /config/bspwm/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/dunstrc -------------------------------------------------------------------------------- /config/bspwm/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/picom.conf -------------------------------------------------------------------------------- /config/bspwm/ryan/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/config.ini -------------------------------------------------------------------------------- /config/bspwm/ryan/gylphs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/gylphs.ini -------------------------------------------------------------------------------- /config/bspwm/ryan/modules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/modules.ini -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/bluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/scripts/bluetooth -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/get-spotify-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/scripts/get-spotify-status -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/scripts/lock -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/microphone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/scripts/microphone -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/scroll-spotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/scripts/scroll-spotify -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/toggle-bluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/scripts/toggle-bluetooth -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/tray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/scripts/tray -------------------------------------------------------------------------------- /config/bspwm/ryan/scripts/tray-status: -------------------------------------------------------------------------------- 1 | 󰁢 2 | -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/actions/actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/actions/actions.scss -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/actions/actions.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/actions/actions.yuck -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/assets/default-pfp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/assets/default-pfp.png -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/assets/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/assets/fallback.png -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/bar/bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/bar/bar.scss -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/bar/bar.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/bar/bar.yuck -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/colors.scss -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/dashboard/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/dashboard/dashboard.scss -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/dashboard/dashboard.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/dashboard/dashboard.yuck -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/date/date.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/date/date.scss -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/date/date.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/date/date.yuck -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/eww.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/eww.scss -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/eww.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/eww.yuck -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/powermenu/powermenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/powermenu/powermenu.scss -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/powermenu/powermenu.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/powermenu/powermenu.yuck -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/bluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/bluetooth -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/brightness.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/bsplayout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/bsplayout -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/cpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/cpu.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/detaileww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/detaileww -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/disk.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/dripshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/dripshot -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/exec: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd ~ 4 | ${@} 2>&1 >/dev/null & 5 | -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/mic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/mic -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/music/control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/music/control.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/music/songart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/music/songart.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/music/songdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/music/songdata.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/network.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/networkmenu.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | networkmanager_dmenu & 4 | -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/pfp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/pfp.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/popup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/popup -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/ram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/ram.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/redshift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/redshift -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/sauceshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/sauceshot -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/temp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/temp.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/updates -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/user.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/volume.sh -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/windowtitle: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | xtitle -s | stdbuf -oL -eL uniq | cat -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/scripts/workspaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/scripts/workspaces -------------------------------------------------------------------------------- /config/bspwm/ryan/src/eww/variables.yuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/src/eww/variables.yuck -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-1.jpg -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-2.jpg -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-3.png -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-4.png -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-5.webp -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-6.png -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-7.png -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-8.png -------------------------------------------------------------------------------- /config/bspwm/ryan/walls/ryan-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/ryan/walls/ryan-9.png -------------------------------------------------------------------------------- /config/bspwm/script/bspfloat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/script/bspfloat -------------------------------------------------------------------------------- /config/bspwm/script/current-layout: -------------------------------------------------------------------------------- 1 | 󰙀 2 | -------------------------------------------------------------------------------- /config/bspwm/script/external-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/script/external-rules -------------------------------------------------------------------------------- /config/bspwm/script/fix-plank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/script/fix-plank -------------------------------------------------------------------------------- /config/bspwm/script/switch-layouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/script/switch-layouts -------------------------------------------------------------------------------- /config/bspwm/scripts/.sys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/bspwm/scripts/Brightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/Brightness -------------------------------------------------------------------------------- /config/bspwm/scripts/ExternalRules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/ExternalRules -------------------------------------------------------------------------------- /config/bspwm/scripts/KeybindingsHelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/KeybindingsHelp -------------------------------------------------------------------------------- /config/bspwm/scripts/MediaControl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/MediaControl -------------------------------------------------------------------------------- /config/bspwm/scripts/ScreenShoTer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/ScreenShoTer -------------------------------------------------------------------------------- /config/bspwm/scripts/SetSysVars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/SetSysVars -------------------------------------------------------------------------------- /config/bspwm/scripts/Updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/Updates -------------------------------------------------------------------------------- /config/bspwm/scripts/Volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/Volume -------------------------------------------------------------------------------- /config/bspwm/scripts/Weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/Weather -------------------------------------------------------------------------------- /config/bspwm/scripts/autolock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/autolock.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/buttonmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/buttonmin.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/clip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/clip.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/clipboard.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/clipboard.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/colorpicker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/colorpicker -------------------------------------------------------------------------------- /config/bspwm/scripts/colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/colors.ini -------------------------------------------------------------------------------- /config/bspwm/scripts/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/git_push.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/keyboardhelp.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/keyboardhelp.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/launcher/colors/everforest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/launcher/colors/everforest.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/launcher/colors/tokyonight.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/launcher/colors/tokyonight.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/launcher/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/launcher/launcher.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/launcher/shared/colors.rasi: -------------------------------------------------------------------------------- 1 | @import "~/.config/bspwm/scripts/launcher/colors/tokyonight.rasi" 2 | -------------------------------------------------------------------------------- /config/bspwm/scripts/launcher/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/launcher/shared/fonts.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/launcher/style.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/launcher/style.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/lock -------------------------------------------------------------------------------- /config/bspwm/scripts/network.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/network.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/openapps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/openapps -------------------------------------------------------------------------------- /config/bspwm/scripts/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/rofi/config.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/rofi/themes/dracula.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/rofi/themes/dracula.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/rofi/themes/everblush.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/rofi/themes/everblush.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/rofi/themes/forest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/rofi/themes/forest.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/rofi/themes/gruv.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/rofi/themes/gruv.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/rofi/themes/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/rofi/themes/nord.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/rofi/themes/onedark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/rofi/themes/onedark.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/ss -------------------------------------------------------------------------------- /config/bspwm/scripts/ss.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/ss.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/ss.sh -------------------------------------------------------------------------------- /config/bspwm/scripts/ss_time.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/ss_time.rasi -------------------------------------------------------------------------------- /config/bspwm/scripts/system.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/scripts/system.ini -------------------------------------------------------------------------------- /config/bspwm/sxhkdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/bspwm/sxhkdrc -------------------------------------------------------------------------------- /config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/btop/btop.conf -------------------------------------------------------------------------------- /config/btop/btop.conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/btop/btop.conf.txt -------------------------------------------------------------------------------- /config/btop/btop.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/btop/btop.log -------------------------------------------------------------------------------- /config/btop/themes/gruvbox_dark.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/btop/themes/gruvbox_dark.theme -------------------------------------------------------------------------------- /config/btop/themes/tokyo-night.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/btop/themes/tokyo-night.theme -------------------------------------------------------------------------------- /config/conky/Auva/Auva.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/Auva.conf -------------------------------------------------------------------------------- /config/conky/Auva/Auva2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/Auva2.conf -------------------------------------------------------------------------------- /config/conky/Auva/Auva2side.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/Auva2side.conf -------------------------------------------------------------------------------- /config/conky/Auva/Auvaside.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/Auvaside.conf -------------------------------------------------------------------------------- /config/conky/Auva/fonts/BIG JOHN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/fonts/BIG JOHN.otf -------------------------------------------------------------------------------- /config/conky/Auva/res/g958.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/res/g958.png -------------------------------------------------------------------------------- /config/conky/Auva/res/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/res/red.png -------------------------------------------------------------------------------- /config/conky/Auva/scripts/Greeting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/scripts/Greeting.sh -------------------------------------------------------------------------------- /config/conky/Auva/scripts/lua/rings-v1.2.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/scripts/lua/rings-v1.2.1.lua -------------------------------------------------------------------------------- /config/conky/Auva/scripts/weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/scripts/weather.sh -------------------------------------------------------------------------------- /config/conky/Auva/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/conky/Auva/start.sh -------------------------------------------------------------------------------- /config/dmenu/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | config.h 3 | patches.h 4 | dmenu 5 | stest 6 | -------------------------------------------------------------------------------- /config/dmenu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/LICENSE -------------------------------------------------------------------------------- /config/dmenu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/Makefile -------------------------------------------------------------------------------- /config/dmenu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/README -------------------------------------------------------------------------------- /config/dmenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/README.md -------------------------------------------------------------------------------- /config/dmenu/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/arg.h -------------------------------------------------------------------------------- /config/dmenu/config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/config.def.h -------------------------------------------------------------------------------- /config/dmenu/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/config.mk -------------------------------------------------------------------------------- /config/dmenu/dmenu.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/dmenu.1 -------------------------------------------------------------------------------- /config/dmenu/dmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/dmenu.c -------------------------------------------------------------------------------- /config/dmenu/dmenu_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/dmenu_path -------------------------------------------------------------------------------- /config/dmenu/dmenu_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/dmenu_run -------------------------------------------------------------------------------- /config/dmenu/drw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/drw.c -------------------------------------------------------------------------------- /config/dmenu/drw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/drw.h -------------------------------------------------------------------------------- /config/dmenu/patch/center.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/center.c -------------------------------------------------------------------------------- /config/dmenu/patch/dynamicoptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/dynamicoptions.c -------------------------------------------------------------------------------- /config/dmenu/patch/dynamicoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/dynamicoptions.h -------------------------------------------------------------------------------- /config/dmenu/patch/fuzzyhighlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/fuzzyhighlight.c -------------------------------------------------------------------------------- /config/dmenu/patch/fuzzymatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/fuzzymatch.c -------------------------------------------------------------------------------- /config/dmenu/patch/fzfexpect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/fzfexpect.c -------------------------------------------------------------------------------- /config/dmenu/patch/fzfexpect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/fzfexpect.h -------------------------------------------------------------------------------- /config/dmenu/patch/highlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/highlight.c -------------------------------------------------------------------------------- /config/dmenu/patch/highpriority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/highpriority.c -------------------------------------------------------------------------------- /config/dmenu/patch/highpriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/highpriority.h -------------------------------------------------------------------------------- /config/dmenu/patch/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/include.c -------------------------------------------------------------------------------- /config/dmenu/patch/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/include.h -------------------------------------------------------------------------------- /config/dmenu/patch/mousesupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/mousesupport.c -------------------------------------------------------------------------------- /config/dmenu/patch/multiselect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/multiselect.c -------------------------------------------------------------------------------- /config/dmenu/patch/multiselect.h: -------------------------------------------------------------------------------- 1 | static int issel(size_t id); 2 | -------------------------------------------------------------------------------- /config/dmenu/patch/navhistory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/navhistory.c -------------------------------------------------------------------------------- /config/dmenu/patch/nonblockingstdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/nonblockingstdin.c -------------------------------------------------------------------------------- /config/dmenu/patch/nonblockingstdin.h: -------------------------------------------------------------------------------- 1 | static void readevent(); -------------------------------------------------------------------------------- /config/dmenu/patch/numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/numbers.c -------------------------------------------------------------------------------- /config/dmenu/patch/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/numbers.h -------------------------------------------------------------------------------- /config/dmenu/patch/scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/scroll.c -------------------------------------------------------------------------------- /config/dmenu/patch/scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/scroll.h -------------------------------------------------------------------------------- /config/dmenu/patch/xresources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patch/xresources.c -------------------------------------------------------------------------------- /config/dmenu/patches.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/patches.def.h -------------------------------------------------------------------------------- /config/dmenu/stest.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/stest.1 -------------------------------------------------------------------------------- /config/dmenu/stest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/stest.c -------------------------------------------------------------------------------- /config/dmenu/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/util.c -------------------------------------------------------------------------------- /config/dmenu/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/dmenu/util.h -------------------------------------------------------------------------------- /config/greenclip.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/greenclip.toml -------------------------------------------------------------------------------- /config/gtk-3.0/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/gtk-3.0/bookmarks -------------------------------------------------------------------------------- /config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/applications.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/bspwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/bspwm.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/cancel.svg -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/dashboard.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/dwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/dwm.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/edit-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/edit-note.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/exit.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/exitdwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/exitdwm.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/file-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/file-manager.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/music.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/restart.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/restartdwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/restartdwm.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/search.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/system-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/system-menu.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/terminal.png -------------------------------------------------------------------------------- /config/jgmenu/MenuIcons/web-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/MenuIcons/web-browser.png -------------------------------------------------------------------------------- /config/jgmenu/jgmenurc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/jgmenurc -------------------------------------------------------------------------------- /config/jgmenu/prepend.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/jgmenu/prepend.csv -------------------------------------------------------------------------------- /config/mpDris2/mpDris2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/mpDris2/mpDris2.conf -------------------------------------------------------------------------------- /config/mpd/log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/mpd/mpd.conf -------------------------------------------------------------------------------- /config/mpd/mpd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/mpd/mpd.db -------------------------------------------------------------------------------- /config/mpd/mpdstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/mpd/mpdstate -------------------------------------------------------------------------------- /config/mpd/playlists/.nomedia: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/mpd/state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/mpd/state -------------------------------------------------------------------------------- /config/ncmpcpp/bindings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ncmpcpp/bindings -------------------------------------------------------------------------------- /config/ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ncmpcpp/config -------------------------------------------------------------------------------- /config/ncmpcpp/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/neofetch/config.conf -------------------------------------------------------------------------------- /config/networkmanager-dmenu/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/networkmanager-dmenu/config.ini -------------------------------------------------------------------------------- /config/nvim.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/nvim.zip -------------------------------------------------------------------------------- /config/qt5ct/colors/Catppuccin-Latte.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/qt5ct/colors/Catppuccin-Latte.conf -------------------------------------------------------------------------------- /config/qt5ct/colors/Catppuccin-Mocha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/qt5ct/colors/Catppuccin-Mocha.conf -------------------------------------------------------------------------------- /config/qt5ct/qt5ct.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/qt5ct/qt5ct.conf -------------------------------------------------------------------------------- /config/ranger/colorschemes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/ranger/colorschemes/__pycache__/__init__.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/colorschemes/__pycache__/__init__.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/colorschemes/__pycache__/__init__.cpython-311.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/colorschemes/__pycache__/__init__.cpython-311.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/colorschemes/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/colorschemes/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /config/ranger/colorschemes/__pycache__/default.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/colorschemes/__pycache__/default.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/colorschemes/__pycache__/default.cpython-311.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/colorschemes/__pycache__/default.cpython-311.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/colorschemes/__pycache__/default.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/colorschemes/__pycache__/default.cpython-311.pyc -------------------------------------------------------------------------------- /config/ranger/colorschemes/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/colorschemes/default.py -------------------------------------------------------------------------------- /config/ranger/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/__pycache__/__init__.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/__pycache__/__init__.cpython-311.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/__pycache__/__init__.cpython-311.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/__init__.py -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/__pycache__/__init__.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/__pycache__/__init__.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/__pycache__/__init__.cpython-311.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/__pycache__/__init__.cpython-311.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/__pycache__/devicons.cpython-310.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/__pycache__/devicons.cpython-310.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/__pycache__/devicons.cpython-311.opt-1.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/__pycache__/devicons.cpython-311.opt-1.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/__pycache__/devicons.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/__pycache__/devicons.cpython-311.pyc -------------------------------------------------------------------------------- /config/ranger/plugins/ranger_devicons/devicons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/plugins/ranger_devicons/devicons.py -------------------------------------------------------------------------------- /config/ranger/rc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/rc.conf -------------------------------------------------------------------------------- /config/ranger/rifle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/ranger/rifle.conf -------------------------------------------------------------------------------- /config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/rofi/config.rasi -------------------------------------------------------------------------------- /config/tint2/tint2rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/tint2/tint2rc -------------------------------------------------------------------------------- /config/xfce4/help.rc: -------------------------------------------------------------------------------- 1 | auto-online=false 2 | 3 | -------------------------------------------------------------------------------- /config/xfce4/helpers.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/xfce4/helpers.rc -------------------------------------------------------------------------------- /config/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/ristretto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/ristretto.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /home/.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/home/.Xresources -------------------------------------------------------------------------------- /home/.face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/home/.face.png -------------------------------------------------------------------------------- /home/.scripts/HDSentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/home/.scripts/HDSentinel -------------------------------------------------------------------------------- /home/.xsessionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/home/.xsessionrc -------------------------------------------------------------------------------- /home/.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/home/.zshrc -------------------------------------------------------------------------------- /local/bin/colorscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/bin/colorscript -------------------------------------------------------------------------------- /local/bin/hdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/bin/hdd -------------------------------------------------------------------------------- /local/bin/sysfetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/bin/sysfetch -------------------------------------------------------------------------------- /local/share/applications/HDD Sentinel.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/applications/HDD Sentinel.desktop -------------------------------------------------------------------------------- /local/share/applications/nvim.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/applications/nvim.desktop -------------------------------------------------------------------------------- /local/share/applications/ranger.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/applications/ranger.desktop -------------------------------------------------------------------------------- /local/share/applications/zfetch.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/applications/zfetch.desktop -------------------------------------------------------------------------------- /local/share/asciiart/blocks1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/blocks1 -------------------------------------------------------------------------------- /local/share/asciiart/burger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/burger -------------------------------------------------------------------------------- /local/share/asciiart/colorbars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/colorbars -------------------------------------------------------------------------------- /local/share/asciiart/crunchbang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/crunchbang -------------------------------------------------------------------------------- /local/share/asciiart/elfman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/elfman -------------------------------------------------------------------------------- /local/share/asciiart/invader-fire-flower-m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/invader-fire-flower-m -------------------------------------------------------------------------------- /local/share/asciiart/kaisen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/kaisen -------------------------------------------------------------------------------- /local/share/asciiart/mario-xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/mario-xs -------------------------------------------------------------------------------- /local/share/asciiart/pacman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/pacman -------------------------------------------------------------------------------- /local/share/asciiart/pacman-ghosts-l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/pacman-ghosts-l -------------------------------------------------------------------------------- /local/share/asciiart/pinguco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/pinguco -------------------------------------------------------------------------------- /local/share/asciiart/pizza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/pizza -------------------------------------------------------------------------------- /local/share/asciiart/rupees: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/rupees -------------------------------------------------------------------------------- /local/share/asciiart/skullys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/skullys -------------------------------------------------------------------------------- /local/share/asciiart/skullz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/skullz -------------------------------------------------------------------------------- /local/share/asciiart/taco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/taco -------------------------------------------------------------------------------- /local/share/asciiart/zwaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/asciiart/zwaves -------------------------------------------------------------------------------- /local/share/fonts/fonts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/local/share/fonts/fonts.zip -------------------------------------------------------------------------------- /ss/eww_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/ss/eww_bar.png -------------------------------------------------------------------------------- /ss/eww_bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/ss/eww_bar2.png -------------------------------------------------------------------------------- /ss/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/ss/launcher.png -------------------------------------------------------------------------------- /ss/neofetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/ss/neofetch.png -------------------------------------------------------------------------------- /ss/polybar_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/ss/polybar_bar.png -------------------------------------------------------------------------------- /ss/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayry/dotfiles-bspwm/HEAD/ss/ss.png --------------------------------------------------------------------------------