├── .gitignore ├── .ignore ├── .themes └── .themes │ ├── Lavanda-Dark-Compact-Tokyonight │ ├── cinnamon │ │ ├── assets │ │ │ ├── add-workspace-active.svg │ │ │ ├── add-workspace-hover.svg │ │ │ ├── add-workspace.svg │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox.svg │ │ │ ├── close-active.svg │ │ │ ├── close-hover.svg │ │ │ ├── close.svg │ │ │ ├── corner-ripple.svg │ │ │ ├── radiobutton-off.svg │ │ │ ├── radiobutton.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ └── trash-icon.svg │ │ ├── cinnamon.css │ │ └── thumbnail.png │ ├── gnome-shell │ │ ├── assets │ │ │ ├── activities-white.svg │ │ │ ├── activities.svg │ │ │ ├── calendar-arrow-left.svg │ │ │ ├── calendar-arrow-right.svg │ │ │ ├── calendar-today.svg │ │ │ ├── checkbox-off-active.svg │ │ │ ├── checkbox-off-hover.svg │ │ │ ├── checkbox-off.svg │ │ │ ├── checkbox.svg │ │ │ ├── dash-placeholder.svg │ │ │ ├── no-events.svg │ │ │ ├── no-notifications.svg │ │ │ ├── noise-texture.svg │ │ │ ├── process-working.svg │ │ │ ├── toggle-off.svg │ │ │ └── toggle-on.svg │ │ ├── gnome-shell.css │ │ ├── no-events.svg │ │ ├── no-notifications.svg │ │ ├── pad-osd.css │ │ └── process-working.svg │ ├── gtk-2.0 │ │ ├── apps.rc │ │ ├── assets │ │ │ ├── border.png │ │ │ ├── button-active.png │ │ │ ├── button-disabled.png │ │ │ ├── button-hover.png │ │ │ ├── button.png │ │ │ ├── checkbox-checked-active.png │ │ │ ├── checkbox-checked-disabled.png │ │ │ ├── checkbox-checked-hover.png │ │ │ ├── checkbox-checked.png │ │ │ ├── checkbox-mixed-active.png │ │ │ ├── checkbox-mixed-disabled.png │ │ │ ├── checkbox-mixed-hover.png │ │ │ ├── checkbox-mixed.png │ │ │ ├── checkbox-unchecked-active.png │ │ │ ├── checkbox-unchecked-disabled.png │ │ │ ├── checkbox-unchecked-hover.png │ │ │ ├── checkbox-unchecked.png │ │ │ ├── combo-left-entry-active.png │ │ │ ├── combo-left-entry-disabled.png │ │ │ ├── combo-left-entry-hover.png │ │ │ ├── combo-left-entry.png │ │ │ ├── combo-right-entry-active.png │ │ │ ├── combo-right-entry-disabled.png │ │ │ ├── combo-right-entry-hover.png │ │ │ ├── combo-right-entry.png │ │ │ ├── entry-active.png │ │ │ ├── entry-background-disabled.png │ │ │ ├── entry-background.png │ │ │ ├── entry-disabled.png │ │ │ ├── entry-hover.png │ │ │ ├── entry.png │ │ │ ├── flat-button-active.png │ │ │ ├── flat-button-disabled.png │ │ │ ├── flat-button-hover.png │ │ │ ├── flat-button.png │ │ │ ├── focus.png │ │ │ ├── frame-inline.png │ │ │ ├── frame-notebook.png │ │ │ ├── frame.png │ │ │ ├── handle-horz-active.png │ │ │ ├── handle-horz-hover.png │ │ │ ├── handle-horz.png │ │ │ ├── handle-vert-active.png │ │ │ ├── handle-vert-hover.png │ │ │ ├── handle-vert.png │ │ │ ├── menu-checkbox-checked-disabled.png │ │ │ ├── menu-checkbox-checked.png │ │ │ ├── menu-checkbox-mixed-disabled.png │ │ │ ├── menu-checkbox-mixed.png │ │ │ ├── menu-checkbox-unchecked-disabled.png │ │ │ ├── menu-checkbox-unchecked.png │ │ │ ├── menu-radio-checked-disabled.png │ │ │ ├── menu-radio-checked.png │ │ │ ├── menu-radio-mixed-disabled.png │ │ │ ├── menu-radio-mixed.png │ │ │ ├── menu-radio-unchecked-disabled.png │ │ │ ├── menu-radio-unchecked.png │ │ │ ├── pan-down-alt-disabled.png │ │ │ ├── pan-down-alt.png │ │ │ ├── pan-down-disabled.png │ │ │ ├── pan-down.png │ │ │ ├── pan-left-alt-disabled.png │ │ │ ├── pan-left-alt.png │ │ │ ├── pan-left-disabled.png │ │ │ ├── pan-left-semi.png │ │ │ ├── pan-left.png │ │ │ ├── pan-right-alt-disabled.png │ │ │ ├── pan-right-alt.png │ │ │ ├── pan-right-disabled.png │ │ │ ├── pan-right-semi.png │ │ │ ├── pan-right.png │ │ │ ├── pan-up-alt-disabled.png │ │ │ ├── pan-up-alt.png │ │ │ ├── pan-up-disabled.png │ │ │ ├── pan-up.png │ │ │ ├── progressbar-progress.png │ │ │ ├── progressbar-trough.png │ │ │ ├── radio-checked-active.png │ │ │ ├── radio-checked-disabled.png │ │ │ ├── radio-checked-hover.png │ │ │ ├── radio-checked.png │ │ │ ├── radio-mixed-active.png │ │ │ ├── radio-mixed-disabled.png │ │ │ ├── radio-mixed-hover.png │ │ │ ├── radio-mixed.png │ │ │ ├── radio-unchecked-active.png │ │ │ ├── radio-unchecked-disabled.png │ │ │ ├── radio-unchecked-hover.png │ │ │ ├── radio-unchecked.png │ │ │ ├── scale-horz-trough-active.png │ │ │ ├── scale-horz-trough-disabled.png │ │ │ ├── scale-horz-trough.png │ │ │ ├── scale-slider-active.png │ │ │ ├── scale-slider-disabled.png │ │ │ ├── scale-slider-hover.png │ │ │ ├── scale-slider.png │ │ │ ├── scale-vert-trough-active.png │ │ │ ├── scale-vert-trough-disabled.png │ │ │ ├── scale-vert-trough.png │ │ │ ├── scrollbar-horz-slider-active.png │ │ │ ├── scrollbar-horz-slider-disabled.png │ │ │ ├── scrollbar-horz-slider-hover.png │ │ │ ├── scrollbar-horz-slider.png │ │ │ ├── scrollbar-horz-trough.png │ │ │ ├── scrollbar-vert-ltr-slider-active.png │ │ │ ├── scrollbar-vert-ltr-slider-disabled.png │ │ │ ├── scrollbar-vert-ltr-slider-hover.png │ │ │ ├── scrollbar-vert-ltr-slider.png │ │ │ ├── scrollbar-vert-ltr-trough.png │ │ │ ├── scrollbar-vert-rtl-slider-active.png │ │ │ ├── scrollbar-vert-rtl-slider-disabled.png │ │ │ ├── scrollbar-vert-rtl-slider-hover.png │ │ │ ├── scrollbar-vert-rtl-slider.png │ │ │ ├── scrollbar-vert-rtl-trough.png │ │ │ ├── spin-ltr-down-active.png │ │ │ ├── spin-ltr-down-disabled.png │ │ │ ├── spin-ltr-down-hover.png │ │ │ ├── spin-ltr-down.png │ │ │ ├── spin-ltr-up-active.png │ │ │ ├── spin-ltr-up-disabled.png │ │ │ ├── spin-ltr-up-hover.png │ │ │ ├── spin-ltr-up.png │ │ │ ├── spin-rtl-down-active.png │ │ │ ├── spin-rtl-down-disabled.png │ │ │ ├── spin-rtl-down-hover.png │ │ │ ├── spin-rtl-down.png │ │ │ ├── spin-rtl-up-active.png │ │ │ ├── spin-rtl-up-disabled.png │ │ │ ├── spin-rtl-up-hover.png │ │ │ ├── spin-rtl-up.png │ │ │ ├── tab.png │ │ │ ├── treeview-ltr-button-active.png │ │ │ ├── treeview-ltr-button-hover.png │ │ │ ├── treeview-ltr-button.png │ │ │ ├── treeview-rtl-button-active.png │ │ │ ├── treeview-rtl-button-hover.png │ │ │ └── treeview-rtl-button.png │ │ ├── gtkrc │ │ ├── hacks.rc │ │ └── main.rc │ ├── gtk-3.0 │ │ ├── assets │ │ │ ├── scalable │ │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ │ ├── checkbox-checked-symbolic@2.svg │ │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ │ ├── checkbox-mixed-symbolic@2.svg │ │ │ │ ├── close-symbolic.svg │ │ │ │ ├── close-symbolic@2.svg │ │ │ │ ├── cursor-handle-symbolic.svg │ │ │ │ ├── maximize-symbolic.svg │ │ │ │ ├── maximize-symbolic@2.svg │ │ │ │ ├── minimize-symbolic.svg │ │ │ │ ├── minimize-symbolic@2.svg │ │ │ │ ├── radio-checked-symbolic.svg │ │ │ │ ├── radio-checked-symbolic@2.svg │ │ │ │ ├── radio-mixed-symbolic.svg │ │ │ │ ├── radio-mixed-symbolic@2.svg │ │ │ │ ├── scale-horz-marks-after-slider-symbolic.svg │ │ │ │ ├── scale-horz-marks-before-slider-symbolic.svg │ │ │ │ ├── scale-slider-symbolic.svg │ │ │ │ ├── scale-vert-marks-after-slider-symbolic.svg │ │ │ │ ├── scale-vert-marks-before-slider-symbolic.svg │ │ │ │ ├── small-checkbox-checked-symbolic.svg │ │ │ │ ├── small-checkbox-checked-symbolic@2.svg │ │ │ │ ├── small-checkbox-mixed-symbolic.svg │ │ │ │ ├── small-checkbox-mixed-symbolic@2.svg │ │ │ │ ├── small-radio-checked-symbolic.svg │ │ │ │ ├── small-radio-checked-symbolic@2.svg │ │ │ │ ├── small-radio-mixed-symbolic.svg │ │ │ │ ├── small-radio-mixed-symbolic@2.svg │ │ │ │ ├── unmaximize-symbolic.svg │ │ │ │ └── unmaximize-symbolic@2.svg │ │ │ ├── scale-horz-marks-after-slider-dark.png │ │ │ ├── scale-horz-marks-after-slider-dark@2.png │ │ │ ├── scale-horz-marks-after-slider-disabled-dark.png │ │ │ ├── scale-horz-marks-after-slider-disabled-dark@2.png │ │ │ ├── scale-horz-marks-after-slider-disabled.png │ │ │ ├── scale-horz-marks-after-slider-disabled@2.png │ │ │ ├── scale-horz-marks-after-slider.png │ │ │ ├── scale-horz-marks-after-slider@2.png │ │ │ ├── scale-horz-marks-before-slider-dark.png │ │ │ ├── scale-horz-marks-before-slider-dark@2.png │ │ │ ├── scale-horz-marks-before-slider-disabled-dark.png │ │ │ ├── scale-horz-marks-before-slider-disabled-dark@2.png │ │ │ ├── scale-horz-marks-before-slider-disabled.png │ │ │ ├── scale-horz-marks-before-slider-disabled@2.png │ │ │ ├── scale-horz-marks-before-slider.png │ │ │ ├── scale-horz-marks-before-slider@2.png │ │ │ ├── scale-vert-marks-after-slider-dark.png │ │ │ ├── scale-vert-marks-after-slider-dark@2.png │ │ │ ├── scale-vert-marks-after-slider-disabled-dark.png │ │ │ ├── scale-vert-marks-after-slider-disabled-dark@2.png │ │ │ ├── scale-vert-marks-after-slider-disabled.png │ │ │ ├── scale-vert-marks-after-slider-disabled@2.png │ │ │ ├── scale-vert-marks-after-slider.png │ │ │ ├── scale-vert-marks-after-slider@2.png │ │ │ ├── scale-vert-marks-before-slider-dark.png │ │ │ ├── scale-vert-marks-before-slider-dark@2.png │ │ │ ├── scale-vert-marks-before-slider-disabled-dark.png │ │ │ ├── scale-vert-marks-before-slider-disabled-dark@2.png │ │ │ ├── scale-vert-marks-before-slider-disabled.png │ │ │ ├── scale-vert-marks-before-slider-disabled@2.png │ │ │ ├── scale-vert-marks-before-slider.png │ │ │ ├── scale-vert-marks-before-slider@2.png │ │ │ ├── selectionmode-checkbox-checked-dark.png │ │ │ ├── selectionmode-checkbox-checked-dark@2.png │ │ │ ├── selectionmode-checkbox-checked.png │ │ │ ├── selectionmode-checkbox-checked@2.png │ │ │ ├── selectionmode-checkbox-unchecked-dark.png │ │ │ ├── selectionmode-checkbox-unchecked-dark@2.png │ │ │ ├── selectionmode-checkbox-unchecked.png │ │ │ └── selectionmode-checkbox-unchecked@2.png │ │ ├── gtk-dark.css │ │ ├── gtk.css │ │ └── thumbnail.png │ ├── gtk-4.0 │ │ ├── assets │ │ │ ├── scalable │ │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ │ ├── checkbox-checked-symbolic@2.svg │ │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ │ ├── checkbox-mixed-symbolic@2.svg │ │ │ │ ├── close-symbolic.svg │ │ │ │ ├── close-symbolic@2.svg │ │ │ │ ├── cursor-handle-symbolic.svg │ │ │ │ ├── maximize-symbolic.svg │ │ │ │ ├── maximize-symbolic@2.svg │ │ │ │ ├── minimize-symbolic.svg │ │ │ │ ├── minimize-symbolic@2.svg │ │ │ │ ├── radio-checked-symbolic.svg │ │ │ │ ├── radio-checked-symbolic@2.svg │ │ │ │ ├── radio-mixed-symbolic.svg │ │ │ │ ├── radio-mixed-symbolic@2.svg │ │ │ │ ├── scale-horz-marks-after-slider-symbolic.svg │ │ │ │ ├── scale-horz-marks-before-slider-symbolic.svg │ │ │ │ ├── scale-slider-symbolic.svg │ │ │ │ ├── scale-vert-marks-after-slider-symbolic.svg │ │ │ │ ├── scale-vert-marks-before-slider-symbolic.svg │ │ │ │ ├── small-checkbox-checked-symbolic.svg │ │ │ │ ├── small-checkbox-checked-symbolic@2.svg │ │ │ │ ├── small-checkbox-mixed-symbolic.svg │ │ │ │ ├── small-checkbox-mixed-symbolic@2.svg │ │ │ │ ├── small-radio-checked-symbolic.svg │ │ │ │ ├── small-radio-checked-symbolic@2.svg │ │ │ │ ├── small-radio-mixed-symbolic.svg │ │ │ │ ├── small-radio-mixed-symbolic@2.svg │ │ │ │ ├── unmaximize-symbolic.svg │ │ │ │ └── unmaximize-symbolic@2.svg │ │ │ ├── scale-horz-marks-after-slider-dark.png │ │ │ ├── scale-horz-marks-after-slider-dark@2.png │ │ │ ├── scale-horz-marks-after-slider-disabled-dark.png │ │ │ ├── scale-horz-marks-after-slider-disabled-dark@2.png │ │ │ ├── scale-horz-marks-after-slider-disabled.png │ │ │ ├── scale-horz-marks-after-slider-disabled@2.png │ │ │ ├── scale-horz-marks-after-slider.png │ │ │ ├── scale-horz-marks-after-slider@2.png │ │ │ ├── scale-horz-marks-before-slider-dark.png │ │ │ ├── scale-horz-marks-before-slider-dark@2.png │ │ │ ├── scale-horz-marks-before-slider-disabled-dark.png │ │ │ ├── scale-horz-marks-before-slider-disabled-dark@2.png │ │ │ ├── scale-horz-marks-before-slider-disabled.png │ │ │ ├── scale-horz-marks-before-slider-disabled@2.png │ │ │ ├── scale-horz-marks-before-slider.png │ │ │ ├── scale-horz-marks-before-slider@2.png │ │ │ ├── scale-vert-marks-after-slider-dark.png │ │ │ ├── scale-vert-marks-after-slider-dark@2.png │ │ │ ├── scale-vert-marks-after-slider-disabled-dark.png │ │ │ ├── scale-vert-marks-after-slider-disabled-dark@2.png │ │ │ ├── scale-vert-marks-after-slider-disabled.png │ │ │ ├── scale-vert-marks-after-slider-disabled@2.png │ │ │ ├── scale-vert-marks-after-slider.png │ │ │ ├── scale-vert-marks-after-slider@2.png │ │ │ ├── scale-vert-marks-before-slider-dark.png │ │ │ ├── scale-vert-marks-before-slider-dark@2.png │ │ │ ├── scale-vert-marks-before-slider-disabled-dark.png │ │ │ ├── scale-vert-marks-before-slider-disabled-dark@2.png │ │ │ ├── scale-vert-marks-before-slider-disabled.png │ │ │ ├── scale-vert-marks-before-slider-disabled@2.png │ │ │ ├── scale-vert-marks-before-slider.png │ │ │ ├── scale-vert-marks-before-slider@2.png │ │ │ ├── selectionmode-checkbox-checked-dark.png │ │ │ ├── selectionmode-checkbox-checked-dark@2.png │ │ │ ├── selectionmode-checkbox-checked.png │ │ │ ├── selectionmode-checkbox-checked@2.png │ │ │ ├── selectionmode-checkbox-unchecked-dark.png │ │ │ ├── selectionmode-checkbox-unchecked-dark@2.png │ │ │ ├── selectionmode-checkbox-unchecked.png │ │ │ └── selectionmode-checkbox-unchecked@2.png │ │ ├── gtk-dark.css │ │ ├── gtk.css │ │ └── thumbnail.png │ ├── index.theme │ ├── metacity-1 │ │ ├── assets │ │ │ ├── button.svg │ │ │ ├── close.svg │ │ │ ├── maximize.svg │ │ │ ├── menu.svg │ │ │ ├── minimize.svg │ │ │ ├── shade.svg │ │ │ ├── unmaximize.svg │ │ │ └── unshade.svg │ │ ├── metacity-theme-1.xml │ │ ├── metacity-theme-2.xml │ │ ├── metacity-theme-3.xml │ │ └── thumbnail.png │ ├── plank │ │ └── dock.theme │ └── xfwm4 │ │ ├── bottom-active.png │ │ ├── bottom-inactive.png │ │ ├── bottom-left-active.png │ │ ├── bottom-left-inactive.png │ │ ├── bottom-right-active.png │ │ ├── bottom-right-inactive.png │ │ ├── close-active.png │ │ ├── close-inactive.png │ │ ├── close-prelight.png │ │ ├── close-pressed.png │ │ ├── hide-active.png │ │ ├── hide-inactive.png │ │ ├── hide-prelight.png │ │ ├── hide-pressed.png │ │ ├── left-active.png │ │ ├── left-inactive.png │ │ ├── maximize-active.png │ │ ├── maximize-inactive.png │ │ ├── maximize-prelight.png │ │ ├── maximize-pressed.png │ │ ├── maximize-toggled-active.png │ │ ├── maximize-toggled-prelight.png │ │ ├── maximize-toggled-pressed.png │ │ ├── menu-active.png │ │ ├── menu-inactive.png │ │ ├── menu-prelight.png │ │ ├── menu-pressed.png │ │ ├── right-active.png │ │ ├── right-inactive.png │ │ ├── shade-active.png │ │ ├── shade-inactive.png │ │ ├── shade-prelight.png │ │ ├── shade-pressed.png │ │ ├── shade-toggled-active.png │ │ ├── shade-toggled-inactive.png │ │ ├── shade-toggled-prelight.png │ │ ├── shade-toggled-pressed.png │ │ ├── stick-active.png │ │ ├── stick-inactive.png │ │ ├── stick-prelight.png │ │ ├── stick-pressed.png │ │ ├── stick-toggled-active.png │ │ ├── stick-toggled-inactive.png │ │ ├── stick-toggled-prelight.png │ │ ├── stick-toggled-pressed.png │ │ ├── themerc │ │ ├── title-1-active.png │ │ ├── title-1-inactive.png │ │ ├── title-2-active.png │ │ ├── title-2-inactive.png │ │ ├── title-3-active.png │ │ ├── title-3-inactive.png │ │ ├── title-4-active.png │ │ ├── title-4-inactive.png │ │ ├── title-5-active.png │ │ ├── title-5-inactive.png │ │ ├── top-left-active.png │ │ ├── top-left-inactive.png │ │ ├── top-right-active.png │ │ └── top-right-inactive.png │ └── cirkles │ └── xfwm4 │ ├── bottom-active.png │ ├── bottom-inactive.png │ ├── bottom-left-active.png │ ├── bottom-left-inactive.png │ ├── bottom-right-active.png │ ├── bottom-right-inactive.png │ ├── close-active.png │ ├── close-inactive.png │ ├── close-prelight.png │ ├── close-pressed.png │ ├── hide-active.png │ ├── hide-inactive.png │ ├── hide-prelight.png │ ├── hide-pressed.png │ ├── left-active.png │ ├── left-inactive.png │ ├── maximize-active.png │ ├── maximize-inactive.png │ ├── maximize-prelight.png │ ├── maximize-pressed.png │ ├── menu-active.png │ ├── right-active.png │ ├── right-inactive.png │ ├── shade-active.png │ ├── shade-inactive.png │ ├── shade-prelight.png │ ├── shade-pressed.png │ ├── shade-toggled-active.png │ ├── shade-toggled-inactive.png │ ├── shade-toggled-prelight.png │ ├── shade-toggled-pressed.png │ ├── stick-active.png │ ├── stick-inactive.png │ ├── stick-prelight.png │ ├── stick-pressed.png │ ├── stick-toggled-active.png │ ├── stick-toggled-inactive.png │ ├── stick-toggled-prelight.png │ ├── stick-toggled-pressed.png │ ├── themerc │ ├── title-1-active.png │ ├── title-1-inactive.png │ ├── title-2-active.png │ ├── title-2-inactive.png │ ├── title-3-active.png │ ├── title-3-inactive.png │ ├── title-4-active.png │ ├── title-4-inactive.png │ ├── title-5-active.png │ └── title-5-inactive.png ├── Comfy ├── README.md ├── app.css ├── app.scss ├── assets │ ├── _main.scss │ ├── _navbar.scss │ ├── _now_playing.scss │ ├── _settings.scss │ ├── _snippets.scss │ ├── _top_bar.scss │ └── _tracklist.scss ├── color.ini ├── package.json ├── theme.js ├── theme.script.js └── user.css ├── GoogleSansNerdFont-Regular.ttf ├── README.md ├── alacritty └── .config │ └── alacritty │ ├── alacritty.toml │ ├── alacritty.yml │ ├── tokyodark.yml │ └── tokyonight │ ├── tokyonight-day.yml │ ├── tokyonight-moon.yml │ ├── tokyonight-night.toml │ ├── tokyonight-night.yml │ └── tokyonight-storm.yml ├── bmodf └── hypr │ ├── HelpFile.md │ ├── configs │ ├── ENVariables.conf │ ├── Execs.conf │ ├── Keybinds.conf │ ├── Monitors.conf │ ├── Settings.conf │ └── WindowRules.conf │ ├── dunst │ ├── dunstrc │ ├── icons │ │ ├── backup.png │ │ ├── battery-quarter-solid.svg │ │ ├── battery-status.png │ │ ├── brightness-100.png │ │ ├── brightness-20.png │ │ ├── brightness-40.png │ │ ├── brightness-60.png │ │ ├── brightness-80.png │ │ ├── dropper.png │ │ ├── microphone-mute.png │ │ ├── microphone.png │ │ ├── music.png │ │ ├── palette.png │ │ ├── picture.png │ │ ├── timer.png │ │ ├── uptime.png │ │ ├── volume-high.png │ │ ├── volume-low.png │ │ ├── volume-mid.png │ │ ├── volume-mute.png │ │ └── vpn.png │ ├── images │ │ ├── notification.png │ │ ├── notification2.png │ │ ├── notification3.png │ │ └── notification4.png │ ├── reload │ └── styles │ │ ├── dunstrc-dark │ │ └── dunstrc-light │ ├── hyprland.conf │ ├── scripts │ ├── AirplaneMode.sh │ ├── AppAutoClose.sh │ ├── Brightness.sh │ ├── BrightnessKbd.sh │ ├── ChangeBlur.sh │ ├── ChangeLayoutMenu.sh │ ├── ClipManager.sh │ ├── DarkLight-swaybg.sh │ ├── DarkLight.sh │ ├── Dunst.sh │ ├── GameMode.sh │ ├── Help.sh │ ├── LidSwitch.sh │ ├── LockScreen.sh │ ├── MediaCtrl.sh │ ├── PortalHyprlandArch.sh │ ├── QuickEdit.sh │ ├── RainbowBorders.sh │ ├── ScreenShot.sh │ ├── Startup.sh │ ├── Sunset.sh │ ├── TouchPad.sh │ ├── Volume.sh │ ├── Wallpaper.sh │ ├── WallpaperSelect.sh │ ├── Waybar.sh │ ├── WaybarStyles.sh │ ├── Weather.py │ ├── Weather.sh │ ├── Wofi.sh │ ├── WofiBeats.sh │ ├── WofiBig.sh │ ├── WofiEmoji.sh │ └── WofiPower.sh │ ├── swaylock │ └── config │ ├── themes │ ├── frappe.conf │ ├── latte.conf │ ├── macchiato.conf │ └── mocha.conf │ ├── waybar │ ├── config │ ├── configs │ │ ├── config-default │ │ ├── config-dual │ │ ├── config-gnome │ │ ├── config-plasma │ │ └── config-simple │ ├── modules │ ├── style.css │ └── style │ │ ├── dark-styles │ │ ├── style-dark-cat.css │ │ └── style-dark-tokyo.css │ │ ├── style-b&w.css │ │ ├── style-dark.css │ │ ├── style-default.css │ │ ├── style-default_alter.css │ │ ├── style-light.css │ │ ├── style-mauve.css │ │ ├── style-rgb.css │ │ └── style-simple.css │ └── wofi │ ├── WofiBig │ └── config │ ├── config │ ├── configs │ ├── config-default │ ├── config-gnome │ └── config-plasma │ ├── style.css │ └── styles │ ├── style-dark.css │ └── style-light.css ├── catppuccin-mocha.tmuxtheme ├── dunst └── .config │ └── dunst │ └── dunstrc ├── extras ├── ayu-dark.theme.css ├── foss_droid.md ├── nord.theme.css ├── tabliss.css ├── tabliss.json └── tokyodark.theme.css ├── fish └── .config │ └── fish │ ├── completions │ ├── fisher.fish │ ├── fzf_configure_bindings.fish │ ├── nvm.fish │ ├── sdk.fish │ └── uv.fish │ ├── conf.d │ ├── fzf.fish │ ├── nvm.fish │ └── tokyonight.fish │ ├── config.fish │ ├── fish_plugins │ ├── fish_variables │ ├── functions │ ├── __sdkman-noexport-init.sh │ ├── _ayu_restore_previous_theme.fish │ ├── _fzf_configure_bindings_help.fish │ ├── _fzf_extract_var_info.fish │ ├── _fzf_preview_changed_file.fish │ ├── _fzf_preview_file.fish │ ├── _fzf_report_diff_type.fish │ ├── _fzf_report_file_type.fish │ ├── _fzf_search_directory.fish │ ├── _fzf_search_git_log.fish │ ├── _fzf_search_git_status.fish │ ├── _fzf_search_history.fish │ ├── _fzf_search_processes.fish │ ├── _fzf_search_variables.fish │ ├── _fzf_wrapper.fish │ ├── _nvm_index_update.fish │ ├── _nvm_list.fish │ ├── _nvm_version_activate.fish │ ├── _nvm_version_deactivate.fish │ ├── fish_prompt.fish │ ├── fisher.fish │ ├── fzf_configure_bindings.fish │ ├── javaenv.fish │ ├── nvm.fish │ └── sdk.fish │ └── themes │ ├── Catppuccin Frappe.theme │ ├── Catppuccin Latte.theme │ ├── Catppuccin Macchiato.theme │ ├── Catppuccin Mocha.theme │ ├── TokyoNight Day.theme │ ├── TokyoNight Moon.theme │ ├── TokyoNight Night.theme │ ├── TokyoNight Storm.theme │ ├── gruvbox.theme │ ├── mocha.theme │ ├── tokyonight.theme │ └── tokyonight_night.theme ├── fonts └── GoogleSansNerdFont-Regular.ttf ├── fuzzel └── .config │ └── fuzzel │ └── fuzzel.ini ├── ghostty └── .config │ └── ghostty │ ├── config │ └── themes │ ├── tokyonight │ ├── tokyonight-day │ ├── tokyonight-storm │ ├── tokyonight_moon │ └── tokyonight_night ├── greed └── .tmux.conf ├── hypr └── .config │ └── hypr │ ├── .screenshots │ ├── discord.png │ ├── explorer.png │ ├── fetch.png │ ├── nvim.png │ ├── rofi.png │ ├── spotify.png │ ├── tabliss.png │ └── wallpaper.png │ ├── README.md │ ├── configs │ ├── env_vars.conf │ ├── execs.conf │ ├── keybinds.conf │ ├── keybinds.conf.bak │ ├── local_vars.conf │ ├── monitors.conf │ └── win_rules.conf │ ├── explicit_filter.restore │ ├── hypridle.conf │ ├── hypridle.conf.bak │ ├── hyprland.conf │ ├── hyprland │ ├── ignore.conf │ └── overrides.conf │ ├── hyprlock.conf │ ├── hyprlock.conf.bak │ ├── hyprlock │ ├── assets │ │ └── profile-[1:1-500px].png │ ├── battery.sh │ ├── bluetooth.sh │ ├── greeting.sh │ ├── network.sh │ ├── playerctl.sh │ └── weatherinfo.sh │ ├── hyprpaper.conf │ ├── mocha.conf │ ├── scheme │ └── current.conf │ ├── scripts │ ├── ChangeLayout │ └── xdph │ └── themes │ └── profound │ └── theme.conf ├── hyprpanel └── .config │ └── hyprpanel │ ├── config.json │ ├── modules.json │ └── modules.scss ├── hyprpanel_config.json ├── install_setup ├── kitty └── .config │ └── kitty │ ├── current-theme.conf │ ├── dirty_glass.png │ ├── floppy_colors.conf │ ├── kitty.conf │ ├── kitty.conf.bak │ ├── lovelace_colors.conf │ ├── mocha.conf │ └── themes │ └── tokyodark.conf ├── mpd └── .config │ └── mpd │ └── mpd.conf ├── ncmpcpp └── .config │ └── ncmpcpp │ ├── config │ ├── config2 │ └── error.log ├── neofetch └── .config │ └── neofetch │ ├── alien.txt │ ├── config.conf │ ├── config.conf.bak1 │ ├── config.conf.orgi │ ├── config.small.conf │ └── logo ├── niri └── .config │ └── niri │ └── config.kdl ├── nvim └── .config │ └── nvim │ └── lua │ └── custom │ ├── README.md │ ├── autocmd.lua │ ├── chadrc.lua │ ├── configs │ ├── extras │ │ ├── icons.lua │ │ ├── minimap.lua │ │ ├── noice.lua │ │ └── todo.lua │ ├── lspconfig.lua │ ├── null-ls.lua │ └── overrides.lua │ ├── highlights.lua │ ├── init.lua │ ├── mappings.lua │ ├── plugins.lua │ └── usrcmd.lua ├── paru └── .config │ └── paru │ └── paru.conf ├── picom └── .config │ └── picom │ ├── log.txt │ ├── picom.conf │ ├── picom.conf.bak │ ├── picom.conf.default │ ├── picom.conf.pijulius │ └── picom.conf.qtile ├── rm_bak.sh ├── rofi └── .config │ └── rofi │ ├── catppuccin-mocha.rasi │ ├── catppuccin.qtile.rasi │ ├── catppuccin.rasi │ ├── colors │ ├── catppuccin.rasi │ └── tokyonight.rasi │ ├── config.rasi │ ├── images │ └── f.png │ ├── shared │ ├── colors.rasi │ └── fonts.rasi │ ├── type1.rasi │ └── type6.rasi ├── scripts └── .local │ └── scripts │ ├── Brightness │ ├── Volume │ ├── alert │ ├── arrpc │ ├── batterynotif │ ├── chargingnotify │ ├── checkforupdates │ ├── chngwall │ ├── countnum │ ├── cpu-perf │ ├── cpu-save │ ├── decr_vol_progress │ ├── dexopt │ ├── drc │ ├── dw_pft │ ├── ffmper │ ├── finder │ ├── flash_fw │ ├── fuzzel-emoji │ ├── getvol │ ├── incr_vol_progress │ ├── installuml │ ├── lock_after_suspend.sh │ ├── mic_toggle │ ├── mic_vol │ ├── notif │ ├── ram-usae │ ├── recvid │ ├── run-me │ ├── rwb │ ├── screenshot.sh │ ├── scrot_select │ ├── scrotshot │ ├── smoketest │ ├── stpyserv │ ├── stshzku │ ├── swallow │ ├── tmux-sessionizer │ ├── whatsong.sh │ ├── xeph │ └── ytdla ├── starship └── .config │ ├── starship.toml │ ├── starship.toml.bak │ ├── starship.toml.bak2 │ └── starship.toml2 ├── swaylock └── .config │ └── swaylock │ └── config ├── swaync └── .config │ └── swaync │ └── style.css ├── systemd └── .config │ └── systemd │ └── user │ ├── cliphist.service │ ├── default.target.wants │ └── batsignal.service │ ├── hypridle.service │ ├── niri.service.wants │ ├── cliphist.service │ ├── hypridle.service │ ├── swayosd.service │ ├── swww.service │ ├── waybar.service │ └── xwayland-satellite.service │ ├── swayosd.service │ └── swww.service ├── tmux └── .config │ └── tmux │ ├── tmux.conf │ └── tmux.conf.bak ├── vanvim └── .config │ └── vanvim │ ├── after │ ├── ftplugin │ │ └── py.lua │ └── plugin │ │ ├── autopair.lua │ │ ├── cmp.lua │ │ ├── colorizer.lua │ │ ├── dashboard.lua │ │ ├── flutter_tools.lua │ │ ├── gitsigns.lua │ │ ├── indent-blankline.lua │ │ ├── lsp-colors.lua │ │ ├── lsp-config │ │ ├── mason.lua │ │ └── null-ls.lua │ │ ├── lualine.lua │ │ ├── peek.lua │ │ ├── presence.lua │ │ ├── smoothcursour.lua │ │ ├── tabline.lua │ │ ├── telescope.lua │ │ ├── tree.lua │ │ └── treesitter.lua │ ├── init.lua │ ├── lazy-lock.json │ ├── lua │ └── greed │ │ ├── handlers.lua │ │ ├── init.lua │ │ ├── keymaps.lua │ │ ├── lazy.lua │ │ ├── packer.lua │ │ └── set.lua │ └── plugin │ └── packer_compiled.lua ├── vesktop └── .config │ └── vesktop │ ├── settings.json │ ├── settings │ ├── quickCss.css │ └── settings.json │ └── themes │ ├── catppuccin-mocha.css │ └── tokyonight.css ├── waybar.bak └── .config │ └── waybar │ ├── config │ ├── custom-colors.css │ ├── modules │ ├── scripts │ └── mediaplayer.py │ ├── style.css │ └── style.css.bak ├── waybar └── .config │ └── waybar │ ├── config.jsonc │ ├── default │ ├── config.jsonc │ └── style.css │ ├── modules │ ├── cider.sh │ ├── music_player.sh │ ├── ncspot.sh │ ├── screen_recorder.sh │ ├── screen_recorder_init.sh │ └── system-update.sh │ ├── scripts │ ├── mediaplayer.py │ ├── network │ │ ├── colors.rasi │ │ ├── rofi-network-manager.conf │ │ ├── rofi-network-manager.rasi │ │ └── rofi-network-manager.sh │ ├── power-menu │ │ ├── powermenu.sh │ │ ├── shared │ │ │ ├── colors.rasi │ │ │ └── fonts.rasi │ │ └── style.rasi │ ├── rofi-bluetooth │ ├── spotify.sh │ ├── system-update.sh │ └── weather.py │ ├── style.css │ ├── themes │ ├── Catppuccin-Mocha.css │ ├── Wall-Dcol.css │ └── colors.css │ └── waybar ├── ytm-cat-mocha.css └── ytm.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.ignore -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/add-workspace-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/add-workspace-active.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/add-workspace-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/add-workspace-hover.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/add-workspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/add-workspace.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/calendar-arrow-left.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/calendar-arrow-right.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/checkbox-off.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/checkbox.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/close-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/close-active.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/close-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/close-hover.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/close.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/corner-ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/corner-ripple.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/radiobutton-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/radiobutton-off.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/radiobutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/radiobutton.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/toggle-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/toggle-off.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/toggle-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/toggle-on.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/trash-icon.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/cinnamon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/cinnamon.css -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/activities-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/activities-white.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/activities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/activities.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-arrow-left.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-arrow-right.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-today.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off-active.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off-hover.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/dash-placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/dash-placeholder.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/no-events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/no-events.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/no-notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/no-notifications.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/noise-texture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/noise-texture.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/process-working.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/process-working.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/toggle-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/toggle-off.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/toggle-on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/toggle-on.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/gnome-shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/gnome-shell.css -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/no-events.svg: -------------------------------------------------------------------------------- 1 | assets/no-events.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/no-notifications.svg: -------------------------------------------------------------------------------- 1 | assets/no-notifications.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/pad-osd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/pad-osd.css -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/process-working.svg: -------------------------------------------------------------------------------- 1 | assets/process-working.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/apps.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/apps.rc -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/border.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/button.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-checked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-mixed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-left-entry.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/combo-right-entry.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-background-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-background-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-background.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/entry.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/flat-button.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/focus.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/frame-inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/frame-inline.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/frame-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/frame-notebook.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/frame.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-horz-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-horz-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-horz-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-horz-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-horz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-horz.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-vert-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-vert-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-vert-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-vert-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/handle-vert.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-checked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-checked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-mixed-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-mixed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-checked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-checked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-mixed-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-mixed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-unchecked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-unchecked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-radio-unchecked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down-alt-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down-alt-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down-alt.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-down.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-alt-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-alt-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-alt.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left-semi.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-left.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-alt-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-alt-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-alt.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-semi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right-semi.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-right.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up-alt-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up-alt-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up-alt.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/pan-up.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/progressbar-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/progressbar-progress.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/progressbar-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/progressbar-trough.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-checked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-mixed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/radio-unchecked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-horz-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-horz-trough-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-horz-trough-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-horz-trough-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-horz-trough.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-vert-trough-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-vert-trough-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-vert-trough-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-vert-trough-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-vert-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scale-vert-trough.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-horz-trough.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-trough.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-trough.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-down.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-ltr-up.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-down.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/spin-rtl-up.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/tab.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-ltr-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-ltr-button-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-ltr-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-ltr-button-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-ltr-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-ltr-button.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-rtl-button-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-rtl-button-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-rtl-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-rtl-button-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-rtl-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-rtl-button.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/gtkrc -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/hacks.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/hacks.rc -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/main.rc -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/close-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/close-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/close-symbolic@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/close-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/maximize-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/maximize-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/maximize-symbolic@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/maximize-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/minimize-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/minimize-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/minimize-symbolic@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/minimize-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | checkbox-mixed-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/radio-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | checkbox-mixed-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/scale-slider-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/scale-slider-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/small-radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | small-checkbox-mixed-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/small-radio-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | small-checkbox-mixed-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/unmaximize-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/unmaximize-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/unmaximize-symbolic@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/unmaximize-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/gtk-dark.css -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/close-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/close-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/close-symbolic@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/close-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/maximize-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/maximize-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/maximize-symbolic@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/maximize-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/minimize-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/minimize-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/minimize-symbolic@2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/minimize-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | checkbox-mixed-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/radio-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | checkbox-mixed-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/scale-slider-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/scale-slider-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/small-radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | small-checkbox-mixed-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/small-radio-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | small-checkbox-mixed-symbolic@2.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/unmaximize-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/unmaximize-symbolic.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/gtk-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/gtk-dark.css -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/gtk.css -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/index.theme -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/button.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/close.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/maximize.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/menu.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/minimize.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/shade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/shade.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/unmaximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/unmaximize.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/unshade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/assets/unshade.svg -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/metacity-theme-1.xml: -------------------------------------------------------------------------------- 1 | metacity-theme-3.xml -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/metacity-theme-2.xml: -------------------------------------------------------------------------------- 1 | metacity-theme-3.xml -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/metacity-theme-3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/metacity-theme-3.xml -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/plank/dock.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/plank/dock.theme -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/close-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/hide-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/left-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-toggled-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-toggled-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/maximize-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/menu-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/right-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/shade-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/themerc -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-1-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-1-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-2-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-2-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-3-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-3-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-4-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-4-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-5-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-5-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-left-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-left-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-right-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/top-right-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/close-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/close-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/close-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/close-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/hide-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/hide-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/hide-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/hide-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/left-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/maximize-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/maximize-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/maximize-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/maximize-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/menu-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/right-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-toggled-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-toggled-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-toggled-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/shade-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-toggled-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-toggled-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-toggled-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/stick-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/themerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/themerc -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-1-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-1-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-2-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-2-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-3-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-3-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-4-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-4-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-5-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/.themes/.themes/cirkles/xfwm4/title-5-inactive.png -------------------------------------------------------------------------------- /Comfy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/README.md -------------------------------------------------------------------------------- /Comfy/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/app.css -------------------------------------------------------------------------------- /Comfy/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/app.scss -------------------------------------------------------------------------------- /Comfy/assets/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/assets/_main.scss -------------------------------------------------------------------------------- /Comfy/assets/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/assets/_navbar.scss -------------------------------------------------------------------------------- /Comfy/assets/_now_playing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/assets/_now_playing.scss -------------------------------------------------------------------------------- /Comfy/assets/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/assets/_settings.scss -------------------------------------------------------------------------------- /Comfy/assets/_snippets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/assets/_snippets.scss -------------------------------------------------------------------------------- /Comfy/assets/_top_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/assets/_top_bar.scss -------------------------------------------------------------------------------- /Comfy/assets/_tracklist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/assets/_tracklist.scss -------------------------------------------------------------------------------- /Comfy/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/color.ini -------------------------------------------------------------------------------- /Comfy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/package.json -------------------------------------------------------------------------------- /Comfy/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/theme.js -------------------------------------------------------------------------------- /Comfy/theme.script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/Comfy/theme.script.js -------------------------------------------------------------------------------- /Comfy/user.css: -------------------------------------------------------------------------------- 1 | @import url("https://comfy-themes.github.io/Spicetify/Comfy/app.css"); 2 | -------------------------------------------------------------------------------- /GoogleSansNerdFont-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/GoogleSansNerdFont-Regular.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /alacritty/.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/alacritty.toml -------------------------------------------------------------------------------- /alacritty/.config/alacritty/alacritty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/alacritty.yml -------------------------------------------------------------------------------- /alacritty/.config/alacritty/tokyodark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/tokyodark.yml -------------------------------------------------------------------------------- /alacritty/.config/alacritty/tokyonight/tokyonight-day.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/tokyonight/tokyonight-day.yml -------------------------------------------------------------------------------- /alacritty/.config/alacritty/tokyonight/tokyonight-moon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/tokyonight/tokyonight-moon.yml -------------------------------------------------------------------------------- /alacritty/.config/alacritty/tokyonight/tokyonight-night.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/tokyonight/tokyonight-night.toml -------------------------------------------------------------------------------- /alacritty/.config/alacritty/tokyonight/tokyonight-night.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/tokyonight/tokyonight-night.yml -------------------------------------------------------------------------------- /alacritty/.config/alacritty/tokyonight/tokyonight-storm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/alacritty/.config/alacritty/tokyonight/tokyonight-storm.yml -------------------------------------------------------------------------------- /bmodf/hypr/HelpFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/HelpFile.md -------------------------------------------------------------------------------- /bmodf/hypr/configs/ENVariables.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/configs/ENVariables.conf -------------------------------------------------------------------------------- /bmodf/hypr/configs/Execs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/configs/Execs.conf -------------------------------------------------------------------------------- /bmodf/hypr/configs/Keybinds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/configs/Keybinds.conf -------------------------------------------------------------------------------- /bmodf/hypr/configs/Monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/configs/Monitors.conf -------------------------------------------------------------------------------- /bmodf/hypr/configs/Settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/configs/Settings.conf -------------------------------------------------------------------------------- /bmodf/hypr/configs/WindowRules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/configs/WindowRules.conf -------------------------------------------------------------------------------- /bmodf/hypr/dunst/dunstrc: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/dunst/styles/dunstrc-dark -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/backup.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/battery-quarter-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/battery-quarter-solid.svg -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/battery-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/battery-status.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/brightness-100.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/brightness-20.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/brightness-40.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/brightness-60.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/brightness-80.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/dropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/dropper.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/microphone-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/microphone-mute.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/microphone.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/music.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/palette.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/picture.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/timer.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/uptime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/uptime.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/volume-high.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/volume-low.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/volume-mid.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/volume-mute.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/icons/vpn.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/images/notification.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/images/notification2.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/images/notification3.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/images/notification4.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/reload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/reload -------------------------------------------------------------------------------- /bmodf/hypr/dunst/styles/dunstrc-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/styles/dunstrc-dark -------------------------------------------------------------------------------- /bmodf/hypr/dunst/styles/dunstrc-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/dunst/styles/dunstrc-light -------------------------------------------------------------------------------- /bmodf/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/hyprland.conf -------------------------------------------------------------------------------- /bmodf/hypr/scripts/AirplaneMode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/AirplaneMode.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/AppAutoClose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/AppAutoClose.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Brightness.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/BrightnessKbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/BrightnessKbd.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/ChangeBlur.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/ChangeBlur.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/ChangeLayoutMenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/ChangeLayoutMenu.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/ClipManager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/ClipManager.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/DarkLight-swaybg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/DarkLight-swaybg.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/DarkLight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/DarkLight.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Dunst.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Dunst.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/GameMode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/GameMode.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Help.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | kitty -e nvim ~/.config/hypr/HelpFile.md 3 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/LidSwitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/LidSwitch.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/LockScreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/LockScreen.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/MediaCtrl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/MediaCtrl.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/PortalHyprlandArch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/PortalHyprlandArch.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/QuickEdit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/QuickEdit.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/RainbowBorders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/RainbowBorders.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/ScreenShot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/ScreenShot.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Startup.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Sunset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Sunset.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/TouchPad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/TouchPad.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Volume.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Wallpaper.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/WallpaperSelect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/WallpaperSelect.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Waybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Waybar.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/WaybarStyles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/WaybarStyles.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Weather.py -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Weather.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Wofi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/Wofi.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/WofiBeats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/WofiBeats.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/WofiBig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/WofiBig.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/WofiEmoji.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/WofiEmoji.sh -------------------------------------------------------------------------------- /bmodf/hypr/scripts/WofiPower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/scripts/WofiPower.sh -------------------------------------------------------------------------------- /bmodf/hypr/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/swaylock/config -------------------------------------------------------------------------------- /bmodf/hypr/themes/frappe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/themes/frappe.conf -------------------------------------------------------------------------------- /bmodf/hypr/themes/latte.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/themes/latte.conf -------------------------------------------------------------------------------- /bmodf/hypr/themes/macchiato.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/themes/macchiato.conf -------------------------------------------------------------------------------- /bmodf/hypr/themes/mocha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/themes/mocha.conf -------------------------------------------------------------------------------- /bmodf/hypr/waybar/config: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/waybar/configs/config-simple -------------------------------------------------------------------------------- /bmodf/hypr/waybar/configs/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/configs/config-default -------------------------------------------------------------------------------- /bmodf/hypr/waybar/configs/config-dual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/configs/config-dual -------------------------------------------------------------------------------- /bmodf/hypr/waybar/configs/config-gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/configs/config-gnome -------------------------------------------------------------------------------- /bmodf/hypr/waybar/configs/config-plasma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/configs/config-plasma -------------------------------------------------------------------------------- /bmodf/hypr/waybar/configs/config-simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/configs/config-simple -------------------------------------------------------------------------------- /bmodf/hypr/waybar/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/modules -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style.css: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/waybar/style/style-default_alter.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/dark-styles/style-dark-cat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/dark-styles/style-dark-cat.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/dark-styles/style-dark-tokyo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/dark-styles/style-dark-tokyo.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-b&w.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-b&w.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-dark.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-default.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-default_alter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-default_alter.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-light.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-mauve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-mauve.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-rgb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-rgb.css -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style/style-simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/waybar/style/style-simple.css -------------------------------------------------------------------------------- /bmodf/hypr/wofi/WofiBig/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/wofi/WofiBig/config -------------------------------------------------------------------------------- /bmodf/hypr/wofi/config: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/wofi/configs/config-default -------------------------------------------------------------------------------- /bmodf/hypr/wofi/configs/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/wofi/configs/config-default -------------------------------------------------------------------------------- /bmodf/hypr/wofi/configs/config-gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/wofi/configs/config-gnome -------------------------------------------------------------------------------- /bmodf/hypr/wofi/configs/config-plasma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/wofi/configs/config-plasma -------------------------------------------------------------------------------- /bmodf/hypr/wofi/style.css: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/wofi/styles/style-dark.css -------------------------------------------------------------------------------- /bmodf/hypr/wofi/styles/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/wofi/styles/style-dark.css -------------------------------------------------------------------------------- /bmodf/hypr/wofi/styles/style-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/bmodf/hypr/wofi/styles/style-light.css -------------------------------------------------------------------------------- /catppuccin-mocha.tmuxtheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/catppuccin-mocha.tmuxtheme -------------------------------------------------------------------------------- /dunst/.config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/dunst/.config/dunst/dunstrc -------------------------------------------------------------------------------- /extras/ayu-dark.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/extras/ayu-dark.theme.css -------------------------------------------------------------------------------- /extras/foss_droid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/extras/foss_droid.md -------------------------------------------------------------------------------- /extras/nord.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/extras/nord.theme.css -------------------------------------------------------------------------------- /extras/tabliss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/extras/tabliss.css -------------------------------------------------------------------------------- /extras/tabliss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/extras/tabliss.json -------------------------------------------------------------------------------- /extras/tokyodark.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/extras/tokyodark.theme.css -------------------------------------------------------------------------------- /fish/.config/fish/completions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/completions/fisher.fish -------------------------------------------------------------------------------- /fish/.config/fish/completions/fzf_configure_bindings.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/completions/fzf_configure_bindings.fish -------------------------------------------------------------------------------- /fish/.config/fish/completions/nvm.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/completions/nvm.fish -------------------------------------------------------------------------------- /fish/.config/fish/completions/sdk.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/completions/sdk.fish -------------------------------------------------------------------------------- /fish/.config/fish/completions/uv.fish: -------------------------------------------------------------------------------- 1 | uv generate-shell-completion fish | source 2 | -------------------------------------------------------------------------------- /fish/.config/fish/conf.d/fzf.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/conf.d/fzf.fish -------------------------------------------------------------------------------- /fish/.config/fish/conf.d/nvm.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/conf.d/nvm.fish -------------------------------------------------------------------------------- /fish/.config/fish/conf.d/tokyonight.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/conf.d/tokyonight.fish -------------------------------------------------------------------------------- /fish/.config/fish/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/config.fish -------------------------------------------------------------------------------- /fish/.config/fish/fish_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/fish_plugins -------------------------------------------------------------------------------- /fish/.config/fish/fish_variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/fish_variables -------------------------------------------------------------------------------- /fish/.config/fish/functions/__sdkman-noexport-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/__sdkman-noexport-init.sh -------------------------------------------------------------------------------- /fish/.config/fish/functions/_ayu_restore_previous_theme.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_ayu_restore_previous_theme.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_configure_bindings_help.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_configure_bindings_help.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_extract_var_info.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_extract_var_info.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_preview_changed_file.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_preview_changed_file.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_preview_file.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_preview_file.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_report_diff_type.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_report_diff_type.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_report_file_type.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_report_file_type.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_search_directory.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_search_directory.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_search_git_log.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_search_git_log.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_search_git_status.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_search_git_status.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_search_history.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_search_history.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_search_processes.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_search_processes.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_search_variables.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_search_variables.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_wrapper.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_fzf_wrapper.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_index_update.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_nvm_index_update.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_list.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_nvm_list.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_version_activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_nvm_version_activate.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_version_deactivate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/_nvm_version_deactivate.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/fish_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/fish_prompt.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/fisher.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/fisher.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/fzf_configure_bindings.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/fzf_configure_bindings.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/javaenv.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/javaenv.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/nvm.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/nvm.fish -------------------------------------------------------------------------------- /fish/.config/fish/functions/sdk.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/functions/sdk.fish -------------------------------------------------------------------------------- /fish/.config/fish/themes/Catppuccin Frappe.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/Catppuccin Frappe.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/Catppuccin Latte.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/Catppuccin Latte.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/Catppuccin Macchiato.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/Catppuccin Macchiato.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/Catppuccin Mocha.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/Catppuccin Mocha.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/TokyoNight Day.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/TokyoNight Day.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/TokyoNight Moon.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/TokyoNight Moon.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/TokyoNight Night.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/TokyoNight Night.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/TokyoNight Storm.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/TokyoNight Storm.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/gruvbox.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/gruvbox.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/mocha.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/mocha.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/tokyonight.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/tokyonight.theme -------------------------------------------------------------------------------- /fish/.config/fish/themes/tokyonight_night.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fish/.config/fish/themes/tokyonight_night.theme -------------------------------------------------------------------------------- /fonts/GoogleSansNerdFont-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fonts/GoogleSansNerdFont-Regular.ttf -------------------------------------------------------------------------------- /fuzzel/.config/fuzzel/fuzzel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/fuzzel/.config/fuzzel/fuzzel.ini -------------------------------------------------------------------------------- /ghostty/.config/ghostty/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ghostty/.config/ghostty/config -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ghostty/.config/ghostty/themes/tokyonight -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight-day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ghostty/.config/ghostty/themes/tokyonight-day -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight-storm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ghostty/.config/ghostty/themes/tokyonight-storm -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight_moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ghostty/.config/ghostty/themes/tokyonight_moon -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight_night: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ghostty/.config/ghostty/themes/tokyonight_night -------------------------------------------------------------------------------- /greed/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/greed/.tmux.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/discord.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/explorer.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/fetch.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/nvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/nvim.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/rofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/rofi.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/spotify.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/tabliss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/tabliss.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/.screenshots/wallpaper.png -------------------------------------------------------------------------------- /hypr/.config/hypr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/README.md -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/env_vars.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/configs/env_vars.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/execs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/configs/execs.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/keybinds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/configs/keybinds.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/keybinds.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/configs/keybinds.conf.bak -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/local_vars.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/configs/monitors.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/win_rules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/configs/win_rules.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/explicit_filter.restore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hypr/.config/hypr/hypridle.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hypridle.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/hypridle.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hypridle.conf.bak -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprland.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprland/ignore.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprland/overrides.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprland/overrides.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock.conf.bak -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/assets/profile-[1:1-500px].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock/assets/profile-[1:1-500px].png -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/battery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock/battery.sh -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/bluetooth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock/bluetooth.sh -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/greeting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock/greeting.sh -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock/network.sh -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/playerctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock/playerctl.sh -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/weatherinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprlock/weatherinfo.sh -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/hyprpaper.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/mocha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/mocha.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/scheme/current.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/scheme/current.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/scripts/ChangeLayout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/scripts/ChangeLayout -------------------------------------------------------------------------------- /hypr/.config/hypr/scripts/xdph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/scripts/xdph -------------------------------------------------------------------------------- /hypr/.config/hypr/themes/profound/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hypr/.config/hypr/themes/profound/theme.conf -------------------------------------------------------------------------------- /hyprpanel/.config/hyprpanel/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hyprpanel/.config/hyprpanel/config.json -------------------------------------------------------------------------------- /hyprpanel/.config/hyprpanel/modules.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /hyprpanel/.config/hyprpanel/modules.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyprpanel_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/hyprpanel_config.json -------------------------------------------------------------------------------- /install_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/install_setup -------------------------------------------------------------------------------- /kitty/.config/kitty/current-theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/current-theme.conf -------------------------------------------------------------------------------- /kitty/.config/kitty/dirty_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/dirty_glass.png -------------------------------------------------------------------------------- /kitty/.config/kitty/floppy_colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/floppy_colors.conf -------------------------------------------------------------------------------- /kitty/.config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/kitty.conf -------------------------------------------------------------------------------- /kitty/.config/kitty/kitty.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/kitty.conf.bak -------------------------------------------------------------------------------- /kitty/.config/kitty/lovelace_colors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/lovelace_colors.conf -------------------------------------------------------------------------------- /kitty/.config/kitty/mocha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/mocha.conf -------------------------------------------------------------------------------- /kitty/.config/kitty/themes/tokyodark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/kitty/.config/kitty/themes/tokyodark.conf -------------------------------------------------------------------------------- /mpd/.config/mpd/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/mpd/.config/mpd/mpd.conf -------------------------------------------------------------------------------- /ncmpcpp/.config/ncmpcpp/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ncmpcpp/.config/ncmpcpp/config -------------------------------------------------------------------------------- /ncmpcpp/.config/ncmpcpp/config2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ncmpcpp/.config/ncmpcpp/config2 -------------------------------------------------------------------------------- /ncmpcpp/.config/ncmpcpp/error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neofetch/.config/neofetch/alien.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/neofetch/.config/neofetch/alien.txt -------------------------------------------------------------------------------- /neofetch/.config/neofetch/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/neofetch/.config/neofetch/config.conf -------------------------------------------------------------------------------- /neofetch/.config/neofetch/config.conf.bak1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/neofetch/.config/neofetch/config.conf.bak1 -------------------------------------------------------------------------------- /neofetch/.config/neofetch/config.conf.orgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/neofetch/.config/neofetch/config.conf.orgi -------------------------------------------------------------------------------- /neofetch/.config/neofetch/config.small.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/neofetch/.config/neofetch/config.small.conf -------------------------------------------------------------------------------- /neofetch/.config/neofetch/logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/neofetch/.config/neofetch/logo -------------------------------------------------------------------------------- /niri/.config/niri/config.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/niri/.config/niri/config.kdl -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/README.md -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/autocmd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/autocmd.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/chadrc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/chadrc.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/extras/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/configs/extras/icons.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/extras/minimap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/configs/extras/minimap.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/extras/noice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/configs/extras/noice.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/extras/todo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/configs/extras/todo.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/lspconfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/configs/lspconfig.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/null-ls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/configs/null-ls.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/overrides.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/configs/overrides.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/highlights.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/highlights.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/init.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/mappings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/mappings.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/plugins.lua -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/usrcmd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/nvim/.config/nvim/lua/custom/usrcmd.lua -------------------------------------------------------------------------------- /paru/.config/paru/paru.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/paru/.config/paru/paru.conf -------------------------------------------------------------------------------- /picom/.config/picom/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /picom/.config/picom/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/picom/.config/picom/picom.conf -------------------------------------------------------------------------------- /picom/.config/picom/picom.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/picom/.config/picom/picom.conf.bak -------------------------------------------------------------------------------- /picom/.config/picom/picom.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/picom/.config/picom/picom.conf.default -------------------------------------------------------------------------------- /picom/.config/picom/picom.conf.pijulius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/picom/.config/picom/picom.conf.pijulius -------------------------------------------------------------------------------- /picom/.config/picom/picom.conf.qtile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/picom/.config/picom/picom.conf.qtile -------------------------------------------------------------------------------- /rm_bak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rm_bak.sh -------------------------------------------------------------------------------- /rofi/.config/rofi/catppuccin-mocha.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/catppuccin-mocha.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/catppuccin.qtile.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/catppuccin.qtile.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/catppuccin.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/colors/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/colors/catppuccin.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/colors/tokyonight.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/colors/tokyonight.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/config.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/config.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/images/f.png -------------------------------------------------------------------------------- /rofi/.config/rofi/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/shared/colors.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/shared/fonts.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/type1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/type1.rasi -------------------------------------------------------------------------------- /rofi/.config/rofi/type6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/rofi/.config/rofi/type6.rasi -------------------------------------------------------------------------------- /scripts/.local/scripts/Brightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/Brightness -------------------------------------------------------------------------------- /scripts/.local/scripts/Volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/Volume -------------------------------------------------------------------------------- /scripts/.local/scripts/alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/alert -------------------------------------------------------------------------------- /scripts/.local/scripts/arrpc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd ~/Dev/hobby_projects/arRPC/ 3 | node src/ 4 | -------------------------------------------------------------------------------- /scripts/.local/scripts/batterynotif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/batterynotif -------------------------------------------------------------------------------- /scripts/.local/scripts/chargingnotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/chargingnotify -------------------------------------------------------------------------------- /scripts/.local/scripts/checkforupdates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/checkforupdates -------------------------------------------------------------------------------- /scripts/.local/scripts/chngwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/chngwall -------------------------------------------------------------------------------- /scripts/.local/scripts/countnum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/countnum -------------------------------------------------------------------------------- /scripts/.local/scripts/cpu-perf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/cpu-perf -------------------------------------------------------------------------------- /scripts/.local/scripts/cpu-save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/cpu-save -------------------------------------------------------------------------------- /scripts/.local/scripts/decr_vol_progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/decr_vol_progress -------------------------------------------------------------------------------- /scripts/.local/scripts/dexopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/dexopt -------------------------------------------------------------------------------- /scripts/.local/scripts/drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/drc -------------------------------------------------------------------------------- /scripts/.local/scripts/dw_pft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/dw_pft -------------------------------------------------------------------------------- /scripts/.local/scripts/ffmper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/ffmper -------------------------------------------------------------------------------- /scripts/.local/scripts/finder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/finder -------------------------------------------------------------------------------- /scripts/.local/scripts/flash_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/flash_fw -------------------------------------------------------------------------------- /scripts/.local/scripts/fuzzel-emoji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/fuzzel-emoji -------------------------------------------------------------------------------- /scripts/.local/scripts/getvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/getvol -------------------------------------------------------------------------------- /scripts/.local/scripts/incr_vol_progress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/incr_vol_progress -------------------------------------------------------------------------------- /scripts/.local/scripts/installuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/installuml -------------------------------------------------------------------------------- /scripts/.local/scripts/lock_after_suspend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/lock_after_suspend.sh -------------------------------------------------------------------------------- /scripts/.local/scripts/mic_toggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/mic_toggle -------------------------------------------------------------------------------- /scripts/.local/scripts/mic_vol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/mic_vol -------------------------------------------------------------------------------- /scripts/.local/scripts/notif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/notif -------------------------------------------------------------------------------- /scripts/.local/scripts/ram-usae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/ram-usae -------------------------------------------------------------------------------- /scripts/.local/scripts/recvid: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd ~/Videos/ 4 | wf-recorder --file=$1.mp4 5 | -------------------------------------------------------------------------------- /scripts/.local/scripts/run-me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/run-me -------------------------------------------------------------------------------- /scripts/.local/scripts/rwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/rwb -------------------------------------------------------------------------------- /scripts/.local/scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/screenshot.sh -------------------------------------------------------------------------------- /scripts/.local/scripts/scrot_select: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | scrot -q 50 -s ~/Pictures/Screenshots/selected_%m_%d_%T.png 4 | -------------------------------------------------------------------------------- /scripts/.local/scripts/scrotshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/scrotshot -------------------------------------------------------------------------------- /scripts/.local/scripts/smoketest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/smoketest -------------------------------------------------------------------------------- /scripts/.local/scripts/stpyserv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/stpyserv -------------------------------------------------------------------------------- /scripts/.local/scripts/stshzku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/stshzku -------------------------------------------------------------------------------- /scripts/.local/scripts/swallow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/swallow -------------------------------------------------------------------------------- /scripts/.local/scripts/tmux-sessionizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/tmux-sessionizer -------------------------------------------------------------------------------- /scripts/.local/scripts/whatsong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/whatsong.sh -------------------------------------------------------------------------------- /scripts/.local/scripts/xeph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/scripts/.local/scripts/xeph -------------------------------------------------------------------------------- /scripts/.local/scripts/ytdla: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | yt-dlp -x --audio-format mp3 $@ 4 | -------------------------------------------------------------------------------- /starship/.config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/starship/.config/starship.toml -------------------------------------------------------------------------------- /starship/.config/starship.toml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/starship/.config/starship.toml.bak -------------------------------------------------------------------------------- /starship/.config/starship.toml.bak2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/starship/.config/starship.toml.bak2 -------------------------------------------------------------------------------- /starship/.config/starship.toml2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/starship/.config/starship.toml2 -------------------------------------------------------------------------------- /swaylock/.config/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/swaylock/.config/swaylock/config -------------------------------------------------------------------------------- /swaync/.config/swaync/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/swaync/.config/swaync/style.css -------------------------------------------------------------------------------- /systemd/.config/systemd/user/cliphist.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/systemd/.config/systemd/user/cliphist.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/default.target.wants/batsignal.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/user/batsignal.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/hypridle.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/systemd/.config/systemd/user/hypridle.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/niri.service.wants/cliphist.service: -------------------------------------------------------------------------------- 1 | /home/greed/.config/systemd/user/cliphist.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/niri.service.wants/hypridle.service: -------------------------------------------------------------------------------- 1 | /home/greed/.config/systemd/user/hypridle.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/niri.service.wants/swayosd.service: -------------------------------------------------------------------------------- 1 | /home/greed/.config/systemd/user/swayosd.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/niri.service.wants/swww.service: -------------------------------------------------------------------------------- 1 | /home/greed/.config/systemd/user/swww.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/niri.service.wants/waybar.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/user/waybar.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/niri.service.wants/xwayland-satellite.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/user/xwayland-satellite.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/swayosd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/systemd/.config/systemd/user/swayosd.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/swww.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/systemd/.config/systemd/user/swww.service -------------------------------------------------------------------------------- /tmux/.config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/tmux/.config/tmux/tmux.conf -------------------------------------------------------------------------------- /tmux/.config/tmux/tmux.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/tmux/.config/tmux/tmux.conf.bak -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/ftplugin/py.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/ftplugin/py.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/autopair.lua: -------------------------------------------------------------------------------- 1 | require("nvim-autopairs").setup({}) 2 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/cmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/cmp.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/colorizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/colorizer.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/dashboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/dashboard.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/flutter_tools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/flutter_tools.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/gitsigns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/gitsigns.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/indent-blankline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/indent-blankline.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/lsp-colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/lsp-colors.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/lsp-config/mason.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/lsp-config/mason.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/lsp-config/null-ls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/lsp-config/null-ls.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/lualine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/lualine.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/peek.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/peek.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/presence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/presence.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/smoothcursour.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/smoothcursour.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/tabline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/tabline.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/telescope.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/telescope.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/tree.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/treesitter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/after/plugin/treesitter.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/init.lua: -------------------------------------------------------------------------------- 1 | require("greed") 2 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lazy-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/lazy-lock.json -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lua/greed/handlers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/lua/greed/handlers.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lua/greed/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/lua/greed/init.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lua/greed/keymaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/lua/greed/keymaps.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lua/greed/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/lua/greed/lazy.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lua/greed/packer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/lua/greed/packer.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lua/greed/set.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/lua/greed/set.lua -------------------------------------------------------------------------------- /vanvim/.config/vanvim/plugin/packer_compiled.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vanvim/.config/vanvim/plugin/packer_compiled.lua -------------------------------------------------------------------------------- /vesktop/.config/vesktop/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vesktop/.config/vesktop/settings.json -------------------------------------------------------------------------------- /vesktop/.config/vesktop/settings/quickCss.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vesktop/.config/vesktop/settings/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vesktop/.config/vesktop/settings/settings.json -------------------------------------------------------------------------------- /vesktop/.config/vesktop/themes/catppuccin-mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vesktop/.config/vesktop/themes/catppuccin-mocha.css -------------------------------------------------------------------------------- /vesktop/.config/vesktop/themes/tokyonight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/vesktop/.config/vesktop/themes/tokyonight.css -------------------------------------------------------------------------------- /waybar.bak/.config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar.bak/.config/waybar/config -------------------------------------------------------------------------------- /waybar.bak/.config/waybar/custom-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar.bak/.config/waybar/custom-colors.css -------------------------------------------------------------------------------- /waybar.bak/.config/waybar/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar.bak/.config/waybar/modules -------------------------------------------------------------------------------- /waybar.bak/.config/waybar/scripts/mediaplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar.bak/.config/waybar/scripts/mediaplayer.py -------------------------------------------------------------------------------- /waybar.bak/.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar.bak/.config/waybar/style.css -------------------------------------------------------------------------------- /waybar.bak/.config/waybar/style.css.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar.bak/.config/waybar/style.css.bak -------------------------------------------------------------------------------- /waybar/.config/waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/config.jsonc -------------------------------------------------------------------------------- /waybar/.config/waybar/default/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/default/config.jsonc -------------------------------------------------------------------------------- /waybar/.config/waybar/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/default/style.css -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/cider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/modules/cider.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/music_player.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/modules/music_player.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/ncspot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/modules/ncspot.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/screen_recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/modules/screen_recorder.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/screen_recorder_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/modules/screen_recorder_init.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/system-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/modules/system-update.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/mediaplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/mediaplayer.py -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/network/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/network/colors.rasi -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/network/rofi-network-manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/network/rofi-network-manager.conf -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/network/rofi-network-manager.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/network/rofi-network-manager.rasi -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/network/rofi-network-manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/network/rofi-network-manager.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/power-menu/powermenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/power-menu/powermenu.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/power-menu/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/power-menu/shared/colors.rasi -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/power-menu/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/power-menu/shared/fonts.rasi -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/power-menu/style.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/power-menu/style.rasi -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/rofi-bluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/rofi-bluetooth -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/spotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/spotify.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/system-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/system-update.sh -------------------------------------------------------------------------------- /waybar/.config/waybar/scripts/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/scripts/weather.py -------------------------------------------------------------------------------- /waybar/.config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/style.css -------------------------------------------------------------------------------- /waybar/.config/waybar/themes/Catppuccin-Mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/themes/Catppuccin-Mocha.css -------------------------------------------------------------------------------- /waybar/.config/waybar/themes/Wall-Dcol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/themes/Wall-Dcol.css -------------------------------------------------------------------------------- /waybar/.config/waybar/themes/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/waybar/.config/waybar/themes/colors.css -------------------------------------------------------------------------------- /waybar/.config/waybar/waybar: -------------------------------------------------------------------------------- 1 | ../.dotfiles/waybar/.config/waybar -------------------------------------------------------------------------------- /ytm-cat-mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ytm-cat-mocha.css -------------------------------------------------------------------------------- /ytm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/HEAD/ytm.css --------------------------------------------------------------------------------