gitextract_3tgdgzgg/ ├── .gitignore ├── Herbstluft-KDE-Desktop/ │ ├── README.md │ ├── home/ │ │ ├── .bashrc │ │ ├── .config/ │ │ │ ├── herbstluftwm/ │ │ │ │ └── autostart │ │ │ ├── ksplashrc │ │ │ ├── polybar/ │ │ │ │ ├── config.ini │ │ │ │ ├── launch.sh │ │ │ │ ├── modules.ini │ │ │ │ └── scripts/ │ │ │ │ ├── env.sh │ │ │ │ ├── herbstluftwm.py │ │ │ │ ├── popup-calendar.sh │ │ │ │ ├── powermenu-alt │ │ │ │ └── redshift.sh │ │ │ ├── redshift.conf │ │ │ ├── rofi/ │ │ │ │ ├── config.rasi │ │ │ │ ├── dmenu.rasi │ │ │ │ └── rofi-todo.sh │ │ │ └── xsettingsd/ │ │ │ └── xsettingsd.conf │ │ ├── .local/ │ │ │ └── share/ │ │ │ ├── color-schemes/ │ │ │ │ └── RP.colors │ │ │ └── konsole/ │ │ │ ├── Profilo 1.profile │ │ │ └── RP.colorscheme │ │ └── .xprofile │ ├── tema-firefox.xpi │ ├── tema-telegram-rp.tdesktop-theme │ └── usr/ │ └── share/ │ └── xsessions/ │ └── plasma-hlwm.desktop ├── Herbstluft-Raspberry-Pi-400/ │ ├── README.md │ └── home/ │ ├── .Xdefaults │ ├── .bashrc │ ├── .xinitrc │ ├── herbstluftwm/ │ │ └── autostart │ ├── polybar/ │ │ ├── config │ │ ├── launch.sh │ │ ├── modules.ini │ │ └── scripts/ │ │ ├── env.sh │ │ ├── herbstluftwm.py │ │ ├── pifi/ │ │ │ └── pifi.sh │ │ ├── pivolume/ │ │ │ ├── pivolume.sh │ │ │ └── toggle_pivolume.sh │ │ ├── popup-calendar.sh │ │ ├── powermenu-alt │ │ └── redshift.sh │ └── rofi/ │ ├── config.rasi │ ├── dmenu.rasi │ └── rofi-todo.sh ├── Hyprland-Desktop-Viola-Blu/ │ ├── README.md │ ├── etc/ │ │ └── environment │ └── home/ │ ├── .bashrc │ ├── .config/ │ │ ├── foot/ │ │ │ └── foot.ini │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── psd/ │ │ │ └── psd.conf │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── rofi/ │ │ │ ├── blue.rasi │ │ │ ├── config.rasi │ │ │ └── power-blue.rasi │ │ ├── waybar/ │ │ │ ├── config │ │ │ ├── config_bottom │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ └── style_bottom.css │ │ └── wob/ │ │ └── wob.ini │ └── scripts/ │ ├── gammastep.sh │ ├── rofi-power.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── Hyprland-MacBook-Pro-13-Intel/ │ ├── README.md │ ├── etc/ │ │ ├── bluetooth/ │ │ │ └── main.conf │ │ ├── environment │ │ ├── modprobe.d/ │ │ │ ├── apple-tb.conf │ │ │ └── hid_apple.conf │ │ ├── sysctl.d/ │ │ │ └── 99-swappiness.conf │ │ ├── t2fand.conf │ │ └── vconsole.conf │ ├── home/ │ │ ├── .bashrc │ │ ├── .config/ │ │ │ ├── foot/ │ │ │ │ └── foot.ini │ │ │ ├── hypr/ │ │ │ │ ├── autostart │ │ │ │ └── hyprland.conf │ │ │ ├── mako/ │ │ │ │ └── config │ │ │ ├── micro/ │ │ │ │ └── settings.json │ │ │ ├── psd/ │ │ │ │ └── psd.conf │ │ │ ├── qt5ct/ │ │ │ │ └── qt5ct.conf │ │ │ ├── rofi/ │ │ │ │ ├── blue.rasi │ │ │ │ ├── config.rasi │ │ │ │ └── power-blue.rasi │ │ │ ├── waybar/ │ │ │ │ ├── config │ │ │ │ ├── config_bottom │ │ │ │ ├── modules/ │ │ │ │ │ └── crypto/ │ │ │ │ │ ├── config.ini │ │ │ │ │ └── waybar_crypto.py │ │ │ │ ├── style.css │ │ │ │ └── style_bottom.css │ │ │ └── wob/ │ │ │ └── wob.ini │ │ └── scripts/ │ │ ├── gammastep.sh │ │ ├── powerprofilecycle.sh │ │ ├── rofi-power.sh │ │ ├── waybar_bottom.sh │ │ └── waybar_top.sh │ └── usr/ │ └── lib/ │ └── modprobe.d/ │ └── broadcom-wl-dkms.conf ├── Hyprland-MacBook-Pro-15/ │ ├── README.md │ ├── etc/ │ │ ├── bluetooth/ │ │ │ └── main.conf │ │ └── environment │ └── home/ │ ├── .bashrc │ ├── .config/ │ │ ├── code-flags.conf │ │ ├── foot/ │ │ │ ├── foot.ini │ │ │ └── monokai-stone │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── psd/ │ │ │ └── psd.conf │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── rofi/ │ │ │ ├── blue.rasi │ │ │ ├── config.rasi │ │ │ ├── power-blue.rasi │ │ │ └── vpn.rasi │ │ ├── waybar/ │ │ │ ├── config │ │ │ ├── config_bottom │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ └── style_bottom.css │ │ └── wob/ │ │ └── wob.ini │ └── scripts/ │ ├── gammastep.sh │ ├── rofi-nordvpn │ ├── rofi-power.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── Hyprland-Mini-PC/ │ ├── README.md │ ├── etc/ │ │ └── environment │ └── home/ │ ├── .config/ │ │ ├── code-flags.conf │ │ ├── foot/ │ │ │ ├── foot.ini │ │ │ └── monokai-stone │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── mako/ │ │ │ └── config │ │ ├── psd/ │ │ │ └── psd.conf │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── tofi/ │ │ │ ├── config │ │ │ └── config_power │ │ ├── waybar/ │ │ │ ├── config │ │ │ ├── config_back │ │ │ ├── config_back_2 │ │ │ ├── config_bottom │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ ├── style_back.css │ │ │ └── style_bottom.css │ │ └── wob/ │ │ └── wob.ini │ └── scripts/ │ ├── gammastep.sh │ ├── tofi-power.sh │ ├── waybar_back.sh │ ├── waybar_back_2.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── Hyprland-Samsung-Galaxy-Book-2-OLED/ │ ├── README.md │ ├── etc/ │ │ └── environment │ └── home/ │ ├── .config/ │ │ ├── code-flags.conf │ │ ├── foot/ │ │ │ ├── foot.ini │ │ │ └── monokai-stone │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── tofi/ │ │ │ ├── config │ │ │ └── config_power │ │ ├── waybar/ │ │ │ ├── config │ │ │ ├── config_bottom │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ └── style_bottom.css │ │ └── wob/ │ │ └── wob.ini │ └── scripts/ │ ├── gammastep.sh │ ├── tofi-power.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── Hyprland-Surface-Laptop-3/ │ ├── README.md │ ├── etc/ │ │ ├── bluetooth/ │ │ │ └── main.conf │ │ ├── environment │ │ ├── sysctl.d/ │ │ │ └── 99-swappiness.conf │ │ ├── tlp.conf │ │ └── vconsole.conf │ └── home/ │ ├── .bashrc │ ├── .config/ │ │ ├── foot/ │ │ │ └── foot.ini │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── psd/ │ │ │ └── psd.conf │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── rofi/ │ │ │ ├── blue.rasi │ │ │ ├── config.rasi │ │ │ └── power-blue.rasi │ │ ├── waybar/ │ │ │ ├── config │ │ │ ├── config_bottom │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ └── style_bottom.css │ │ └── wob/ │ │ └── wob.ini │ └── scripts/ │ ├── gammastep.sh │ ├── powerprofilecycle.sh │ ├── rofi-power.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── Hyprland-Surface-Laptop-Go/ │ ├── README.md │ ├── etc/ │ │ └── environment │ └── home/ │ ├── .bashrc │ ├── .config/ │ │ ├── foot/ │ │ │ └── foot.ini │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── rofi/ │ │ │ ├── blue-bottom.rasi │ │ │ ├── blue.rasi │ │ │ ├── config.rasi │ │ │ ├── power-blue-bottom.rasi │ │ │ └── power-blue.rasi │ │ └── waybar/ │ │ ├── config │ │ ├── config_bottom │ │ ├── modules/ │ │ │ └── crypto/ │ │ │ ├── config.ini │ │ │ └── waybar_crypto.py │ │ ├── style.css │ │ └── style_bottom.css │ └── scripts/ │ ├── rofi-power.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── Hyprland-ThinkPad-X1-OLED/ │ ├── README.md │ ├── etc/ │ │ └── environment │ └── home/ │ ├── .bashrc │ ├── .config/ │ │ ├── foot/ │ │ │ └── foot.ini │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── mako/ │ │ │ └── config │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── tofi/ │ │ │ ├── config │ │ │ └── config_power │ │ ├── waybar/ │ │ │ ├── config │ │ │ ├── config_bottom │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ └── style_bottom.css │ │ └── wob/ │ │ └── wob.ini │ └── scripts/ │ ├── tofi-power.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── Hyprland-ZenBook-Duo-Clone-Dual-Screen/ │ ├── README.md │ ├── etc/ │ │ ├── environment │ │ ├── keyd/ │ │ │ └── default.conf │ │ ├── systemd/ │ │ │ └── logind.conf │ │ └── tlp.conf │ └── home/ │ ├── .bashrc │ ├── .config/ │ │ ├── code-flags.conf │ │ ├── foot/ │ │ │ ├── foot.ini │ │ │ └── monokai-stone │ │ ├── hypr/ │ │ │ ├── autostart │ │ │ └── hyprland.conf │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── psd/ │ │ │ └── psd.conf │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── tofi/ │ │ │ ├── config │ │ │ └── config-power │ │ ├── waybar/ │ │ │ ├── config │ │ │ ├── config_bottom │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ └── style_bottom.css │ │ └── wob/ │ │ └── wob.ini │ └── scripts/ │ ├── gammastep.sh │ ├── tofi-nordvpn.sh │ ├── tofi-power.sh │ ├── waybar_bottom.sh │ └── waybar_top.sh ├── LICENSE ├── LabWC-1280x1024-H50/ │ ├── README │ ├── WhiteSur-Light.tar.xz │ └── home/ │ ├── .config/ │ │ ├── foot/ │ │ │ ├── foot.ini │ │ │ ├── monokai-stone │ │ │ └── paper-color-light │ │ ├── labwc/ │ │ │ ├── autostart │ │ │ ├── close.xbm │ │ │ ├── environment │ │ │ ├── menu-generator.xml │ │ │ ├── menu.xml │ │ │ ├── rc.xml │ │ │ ├── themerc │ │ │ └── themerc-override │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── qt6ct/ │ │ │ └── qt6ct.conf │ │ ├── scripts/ │ │ │ ├── bright-down.sh │ │ │ ├── bright-up.sh │ │ │ ├── firefox-sync.sh │ │ │ ├── gammastep.sh │ │ │ ├── powerprofilecycle.sh │ │ │ ├── rofi-nordvpn │ │ │ ├── rofi-power.sh │ │ │ ├── tofi-nordvpn │ │ │ ├── tofi-power.sh │ │ │ ├── toggle_wifi.sh │ │ │ ├── waybar_bottom.sh │ │ │ └── waybar_top.sh │ │ ├── tofi/ │ │ │ ├── config │ │ │ ├── config_power_bottom │ │ │ └── vpn.rasi │ │ └── waybar/ │ │ ├── config │ │ ├── modules/ │ │ │ └── crypto/ │ │ │ ├── config.ini │ │ │ └── waybar_crypto.py │ │ └── style.css │ └── .profile ├── LabWC-1920x1200/ │ ├── README │ ├── WhiteSur-Light.tar.xz │ ├── Yaru-Yellow-v21.04.tar.xz │ └── home/ │ └── .config/ │ ├── foot/ │ │ ├── foot.ini │ │ ├── monokai-stone │ │ └── paper-color-light │ ├── labwc/ │ │ ├── autostart │ │ ├── close.xbm │ │ ├── environment │ │ ├── menu.xml │ │ ├── rc.xml │ │ ├── themerc │ │ └── themerc-override │ ├── mako/ │ │ └── config │ ├── micro/ │ │ └── settings.json │ ├── qt6ct/ │ │ └── qt6ct.conf │ ├── scripts/ │ │ ├── gammastep.sh │ │ ├── powerprofilecycle.sh │ │ ├── tofi-nordvpn │ │ ├── tofi-power.sh │ │ ├── toggle_wifi.sh │ │ ├── waybar_bottom.sh │ │ └── waybar_top.sh │ ├── tofi/ │ │ ├── config │ │ ├── config_power │ │ ├── config_power_bottom │ │ └── vpn.rasi │ └── waybar/ │ ├── config │ ├── config_bottom │ ├── config_top │ ├── modules/ │ │ └── crypto/ │ │ ├── config.ini │ │ └── waybar_crypto.py │ ├── style.css │ ├── style_back.css │ ├── style_bottom.css │ └── style_top.css ├── LabWC-Alpine-Chromebook/ │ ├── README │ ├── WhiteSur-Light.tar.xz │ └── home/ │ ├── .config/ │ │ ├── code-flags.conf │ │ ├── foot/ │ │ │ ├── foot.ini │ │ │ ├── monokai-stone │ │ │ └── paper-color-light │ │ ├── labwc/ │ │ │ ├── autostart │ │ │ ├── environment │ │ │ ├── menu.xml │ │ │ ├── rc.xml │ │ │ ├── themerc │ │ │ └── themerc-override │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── scripts/ │ │ │ ├── firefox-sync.sh │ │ │ ├── gammastep.sh │ │ │ └── tofi-power.sh │ │ ├── tofi/ │ │ │ ├── config │ │ │ └── config_power │ │ └── waybar/ │ │ ├── config │ │ └── style.css │ └── .profile ├── LabWC-Alpine-Netbook/ │ ├── README │ ├── WhiteSur-Light.tar.xz │ └── home/ │ ├── .bashrc │ ├── .config/ │ │ ├── foot/ │ │ │ ├── foot.ini │ │ │ ├── monokai-stone │ │ │ └── paper-color-light │ │ ├── labwc/ │ │ │ ├── autostart │ │ │ ├── close.xbm │ │ │ ├── environment │ │ │ ├── menu.xml │ │ │ ├── rc.xml │ │ │ ├── themerc │ │ │ └── themerc-override │ │ ├── mako/ │ │ │ └── config │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── pcmanfm/ │ │ │ └── default/ │ │ │ └── pcmanfm.conf │ │ ├── qt5ct/ │ │ │ └── qt5ct.conf │ │ ├── scripts/ │ │ │ ├── gammastep.sh │ │ │ ├── tofi-power.sh │ │ │ ├── waybar_bottom.sh │ │ │ └── waybar_top.sh │ │ ├── tofi/ │ │ │ ├── config │ │ │ ├── config_power │ │ │ └── config_power_bottom │ │ └── waybar/ │ │ ├── config │ │ ├── config_top │ │ ├── modules/ │ │ │ └── crypto/ │ │ │ ├── config.ini │ │ │ └── waybar_crypto.py │ │ ├── style.css │ │ └── style_top.css │ └── .profile ├── LabWC-Alpine-Raspberry-Pi-500/ │ ├── README │ ├── config.txt │ ├── home/ │ │ ├── .bashrc │ │ ├── .config/ │ │ │ ├── foot/ │ │ │ │ ├── foot.ini │ │ │ │ ├── monokai-stone │ │ │ │ └── paper-color-light │ │ │ ├── gtk-3.0/ │ │ │ │ └── settings.ini │ │ │ ├── labwc/ │ │ │ │ ├── autostart │ │ │ │ ├── close.xbm │ │ │ │ ├── environment │ │ │ │ ├── menu.xml │ │ │ │ ├── rc.xml │ │ │ │ ├── themerc │ │ │ │ └── themerc-override │ │ │ ├── mako/ │ │ │ │ └── config │ │ │ ├── qt5ct/ │ │ │ │ └── qt5ct.conf │ │ │ ├── scripts/ │ │ │ │ ├── gammastep.sh │ │ │ │ ├── tofi-power.sh │ │ │ │ ├── waybar_bottom.sh │ │ │ │ └── waybar_top.sh │ │ │ ├── tofi/ │ │ │ │ ├── config │ │ │ │ ├── config_power │ │ │ │ └── config_power_bottom │ │ │ └── waybar/ │ │ │ ├── config │ │ │ ├── config_top │ │ │ ├── modules/ │ │ │ │ └── crypto/ │ │ │ │ ├── config.ini │ │ │ │ └── waybar_crypto.py │ │ │ ├── style.css │ │ │ └── style_top.css │ │ ├── .profile │ │ └── WhiteSur-Light.tar.xz │ └── world ├── LabWC-Alpine-ThinkPad-X230/ │ ├── README │ ├── home/ │ │ ├── .config/ │ │ │ ├── foot/ │ │ │ │ ├── foot.ini │ │ │ │ └── monokai-stone │ │ │ ├── labwc/ │ │ │ │ ├── autostart │ │ │ │ ├── environment │ │ │ │ ├── menu.xml │ │ │ │ ├── rc.xml │ │ │ │ ├── themerc │ │ │ │ └── themerc-override │ │ │ ├── mako/ │ │ │ │ └── config │ │ │ ├── scripts/ │ │ │ │ ├── gammastep.sh │ │ │ │ └── tofi-power.sh │ │ │ ├── tofi/ │ │ │ │ └── config │ │ │ └── waybar/ │ │ │ ├── config │ │ │ └── style.css │ │ └── .profile │ └── world ├── LabWC-Chromebook-Plus/ │ ├── README │ └── home/ │ ├── .bashrc │ └── .config/ │ ├── foot/ │ │ ├── foot.ini │ │ ├── monokai-stone │ │ └── paper-color-light │ ├── labwc/ │ │ ├── autostart │ │ ├── close.xbm │ │ ├── environment │ │ ├── menu.xml │ │ ├── rc.xml │ │ ├── themerc │ │ └── themerc-override │ ├── libinput-gestures.conf │ ├── mako/ │ │ └── config │ ├── micro/ │ │ └── settings.json │ ├── qt6ct/ │ │ └── qt6ct.conf │ ├── scripts/ │ │ ├── gammastep.sh │ │ └── tofi-power.sh │ ├── tofi/ │ │ ├── config │ │ ├── config_power │ │ └── config_power_bottom │ └── waybar/ │ ├── config │ ├── config_top │ ├── style.css │ ├── style_back.css │ └── style_top.css ├── README.md ├── Sway-Dell-XPS-13/ │ ├── README.md │ ├── dotfiles.sh │ ├── etc/ │ │ └── environment │ └── home/ │ ├── .Xdefaults │ ├── .bashrc │ ├── .config/ │ │ ├── Code - OSS/ │ │ │ └── User/ │ │ │ └── settings.json │ │ ├── electron13-flags.conf │ │ ├── electron17-flags.conf │ │ ├── foot/ │ │ │ └── foot.ini │ │ ├── libinput-gestures.conf │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── nwg-wrapper/ │ │ │ ├── info.css │ │ │ ├── info.sh │ │ │ ├── logo.css │ │ │ └── logo.pango │ │ ├── rofi/ │ │ │ ├── config.rasi │ │ │ ├── dark.rasi │ │ │ └── power-dark.rasi │ │ ├── sway/ │ │ │ └── config │ │ └── waybar/ │ │ ├── config │ │ ├── config-default │ │ └── style.css │ ├── .icons/ │ │ ├── Faded-Originals-Icons-purple/ │ │ │ ├── 16/ │ │ │ │ └── mimetypes/ │ │ │ │ └── application-vnd.ms-excel │ │ │ ├── 16@2x │ │ │ ├── 16@3x │ │ │ ├── 22@2x │ │ │ ├── 22@3x │ │ │ ├── 24/ │ │ │ │ └── actions/ │ │ │ │ └── media-album-cover │ │ │ ├── 24@2x │ │ │ ├── 24@3x │ │ │ ├── 32@2x │ │ │ ├── 32@3x │ │ │ ├── icon-theme.cache │ │ │ ├── index.theme │ │ │ ├── scalable/ │ │ │ │ └── apps/ │ │ │ │ ├── cinnamon-virtual-keyboard │ │ │ │ └── org.gnome.Weather.Application.svg} │ │ │ ├── scalable@2x │ │ │ └── scalable@3x │ │ └── Faded-Originals-Icons-purple-dark/ │ │ ├── 16/ │ │ │ ├── apps │ │ │ ├── mimetypes │ │ │ ├── panel │ │ │ └── status │ │ ├── 16@2x │ │ ├── 16@3x │ │ ├── 22/ │ │ │ ├── emblems │ │ │ ├── mimetypes │ │ │ └── panel │ │ ├── 22@2x │ │ ├── 22@3x │ │ ├── 24/ │ │ │ ├── actions/ │ │ │ │ └── media-album-cover │ │ │ ├── animations │ │ │ └── panel │ │ ├── 24@2x │ │ ├── 24@3x │ │ ├── 32 │ │ ├── 32@2x │ │ ├── 32@3x │ │ ├── icon-theme.cache │ │ ├── index.theme │ │ ├── scalable │ │ ├── scalable@2x │ │ └── scalable@3x │ ├── .themes/ │ │ └── Dracula-rp/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cinnamon/ │ │ │ ├── _colors.scss │ │ │ ├── _common.scss │ │ │ ├── _drawing.scss │ │ │ ├── cinnamon-dark.css │ │ │ ├── cinnamon-dark.scss │ │ │ ├── cinnamon.css │ │ │ └── cinnamon.scss │ │ ├── gnome-shell/ │ │ │ └── gnome-shell.css │ │ ├── gtk-2.0/ │ │ │ ├── apps/ │ │ │ │ ├── chrome.rc │ │ │ │ ├── gimp.rc │ │ │ │ ├── libreoffice.rc │ │ │ │ ├── terminal.rc │ │ │ │ ├── thunar.rc │ │ │ │ └── xfce.rc │ │ │ ├── gtkrc │ │ │ └── main.rc │ │ ├── gtk-3.0/ │ │ │ ├── apps/ │ │ │ │ ├── budgie.css │ │ │ │ ├── corebird.css │ │ │ │ ├── gala.css │ │ │ │ ├── gnome-applications.css │ │ │ │ ├── mate-applications.css │ │ │ │ ├── solus-applications.css │ │ │ │ └── unity.css │ │ │ ├── gtk-widgets-assets.css │ │ │ ├── gtk-widgets.css │ │ │ ├── gtk.css │ │ │ ├── settings.ini │ │ │ └── widgets/ │ │ │ ├── app-notifications.css │ │ │ ├── assistant.css │ │ │ ├── button.css │ │ │ ├── calendar.css │ │ │ ├── cell-row.css │ │ │ ├── check-radio.css │ │ │ ├── color-chooser.css │ │ │ ├── column-header.css │ │ │ ├── combobox.css │ │ │ ├── content-view.css │ │ │ ├── csd.css │ │ │ ├── dialogs.css │ │ │ ├── entry.css │ │ │ ├── gnome-sofware.css │ │ │ ├── infobar.css │ │ │ ├── list-boxes.css │ │ │ ├── menu.css │ │ │ ├── notebook.css │ │ │ ├── osd.css │ │ │ ├── popover.css │ │ │ ├── progress-scale.css │ │ │ ├── scrollbar.css │ │ │ ├── search-bar.css │ │ │ ├── selection-mode.css │ │ │ ├── separator.css │ │ │ ├── sidebar.css │ │ │ ├── spinbutton.css │ │ │ ├── spinner.css │ │ │ ├── switch.css │ │ │ └── toolbar.css │ │ ├── gtk-3.20/ │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── gtk-4.0/ │ │ │ ├── gtk-dark.css │ │ │ └── gtk.css │ │ ├── index.theme │ │ ├── metacity-1/ │ │ │ ├── metacity-theme-1.xml │ │ │ ├── metacity-theme-2.xml │ │ │ ├── metacity-theme-3.xml │ │ │ └── metacity-theme.xml │ │ └── xfwm4/ │ │ └── themerc │ └── script/ │ ├── gammastep.sh │ ├── noti.sh │ ├── rofi-power.sh │ ├── sway-interactive-screenshot.sh │ └── workspaces-number.sh ├── i3-Chuwi-Larkbook-X/ │ ├── .Xresources │ ├── .Xresources.colors │ ├── .Xresources.colors.dark │ ├── .Xresources.colors.light │ ├── .bashrc │ ├── .config/ │ │ ├── i3/ │ │ │ └── config │ │ ├── kitty/ │ │ │ ├── current-theme.conf │ │ │ ├── kitty.conf │ │ │ └── themes/ │ │ │ ├── theme-dark.conf │ │ │ └── theme-light.conf │ │ ├── micro/ │ │ │ └── settings.json │ │ ├── picom.conf │ │ └── rofi/ │ │ ├── dark.rasi │ │ ├── light.rasi │ │ └── theme │ ├── .profile │ ├── .xinitrc │ ├── README.md │ ├── dotfiles.sh │ └── scripts/ │ ├── bd-big.sh │ ├── bd.sh │ ├── checkbattery.sh │ ├── checklevels.sh │ ├── noti │ └── switch.sh ├── i3-HP-Chromebook-13/ │ ├── README.md │ ├── etc/ │ │ └── X11/ │ │ └── xorg.conf.d/ │ │ ├── 00-keyboard.conf │ │ ├── 20-intel.conf │ │ └── 30-touchpad.conf │ └── home/ │ ├── .Xdefaults │ ├── .bashrc │ ├── .config/ │ │ ├── i3/ │ │ │ ├── bd-big.sh │ │ │ ├── bd.sh │ │ │ └── config │ │ └── picom.conf │ ├── .gtkrc-2.0 │ ├── .xinitrc │ └── scripts/ │ ├── checkbattery.sh │ ├── checklevels.sh │ └── noti ├── i3-HP-Mini-5101/ │ ├── README.md │ ├── etc/ │ │ ├── X11/ │ │ │ └── xorg.conf.d/ │ │ │ └── 20-intel.conf │ │ └── rc.local │ └── home/ │ ├── .Xdefaults │ ├── .bashrc │ ├── .config/ │ │ ├── i3/ │ │ │ ├── bd.sh │ │ │ └── config │ │ └── picom.conf │ ├── .gtkrc-2.0 │ ├── .vimrc │ ├── .xinitrc │ └── scripts/ │ ├── checkbattery.sh │ ├── checklevels.sh │ ├── noti │ └── todo ├── i3-HP-Mini-5103/ │ ├── README.md │ ├── etc/ │ │ └── rc.local │ ├── home/ │ │ ├── .Xdefaults │ │ ├── .bashrc │ │ ├── .config/ │ │ │ ├── i3/ │ │ │ │ ├── bd.sh │ │ │ │ └── config │ │ │ └── picom.conf │ │ ├── .gtkrc-2.0 │ │ ├── .vimrc │ │ ├── .xinitrc │ │ └── scripts/ │ │ ├── checkbattery.sh │ │ ├── checklevels.sh │ │ ├── noti │ │ └── todo │ └── wordgrinder-no-status-bar.patch ├── i3-Pixelbook/ │ ├── 20-intel.conf │ ├── 61-eve-keyboard.hwdb │ ├── README.md │ ├── compton.conf │ ├── i3/ │ │ └── config │ ├── polybar/ │ │ ├── config │ │ ├── config.toml │ │ ├── launch.sh │ │ ├── nightshift.sh │ │ ├── polybar-forecast │ │ ├── popup-calendar.sh │ │ └── toggle-nightlight.sh │ └── rofi/ │ ├── config.rasi │ └── custom.rasi ├── i3-Raspberry-OS-Cyberdeck/ │ ├── README.md │ ├── boot/ │ │ └── config.txt │ ├── dotfiles.sh │ └── home/ │ ├── .Xdefaults │ ├── .bash_aliases │ ├── .config/ │ │ ├── i3/ │ │ │ └── config │ │ └── micro/ │ │ └── settings.json │ ├── .wordgrinder/ │ │ └── startup.lua │ ├── .xscreensaver │ └── temp.sh └── i3-ThinkPad-X1-G3/ ├── .bashrc ├── .config/ │ ├── README.md │ ├── compton.conf │ ├── i3/ │ │ └── config │ ├── polybar/ │ │ ├── config │ │ ├── config.toml │ │ ├── launch.sh │ │ ├── nightshift.sh │ │ ├── polybar-forecast │ │ ├── popup-calendar.sh │ │ └── toggle-nightlight.sh │ └── rofi/ │ ├── config.rasi │ └── custom.rasi └── dotfiles.sh