├── .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 │ ├── 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 │ ├── 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 │ ├── style.css │ └── themes │ ├── Catppuccin-Mocha.css │ ├── Wall-Dcol.css │ └── colors.css ├── ytm-cat-mocha.css └── ytm.css /.gitignore: -------------------------------------------------------------------------------- 1 | .config/nvim/plugin 2 | vesktop/.config/vesktop/sessionData 3 | vesktop/.config/vesktop/Crashpad 4 | vesktop/.config/vesktop/SingletonCookie 5 | vesktop/.config/vesktop/SingletonLock 6 | vesktop/.config/vesktop/SingletonSocket 7 | vesktop/.config/vesktop/state.json 8 | 9 | fish/.config/fish/fish_variables 10 | 11 | nvim/.config/nvim/plugin/packer_compiled.lua 12 | .config/qtile/mic_toggle.sh 13 | ./tmux/.config/tmux/plugins/ 14 | -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | .config/nvim/plugin 2 | 3 | fish/.config/fish/fish_variables 4 | 5 | nvim/.config/nvim/plugin/packer_compiled.lua 6 | .config/qtile/mic_toggle.sh 7 | tmux/.config/tmux/plugins 8 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/checkbox-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/radiobutton-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/radiobutton.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/assets/trash-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/cinnamon/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/activities-white.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/activities.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/calendar-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off-active.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off-hover.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/checkbox-off.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/dash-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gnome-shell/assets/no-notifications.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.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: -------------------------------------------------------------------------------- 1 | .Leader { 2 | stroke-width: .5 !important; 3 | stroke: #535353; 4 | fill: none !important; 5 | } 6 | 7 | .Button { 8 | stroke-width: .25; 9 | stroke: #ededed; 10 | fill: #ededed; 11 | } 12 | 13 | .Ring { 14 | stroke-width: .5 !important; 15 | stroke: #535353 !important; 16 | fill: none !important; 17 | } 18 | 19 | .Label { 20 | stroke: none !important; 21 | stroke-width: .1 !important; 22 | font-size: .1 !important; 23 | fill: transparent !important; 24 | } 25 | 26 | .TouchStrip, .TouchRing { 27 | stroke-width: .1 !important; 28 | stroke: #ededed !important; 29 | fill: #535353 !important; 30 | } 31 | -------------------------------------------------------------------------------- /.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/assets/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-unchecked-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/menu-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-ltr-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider-active.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider-hover.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/scrollbar-vert-rtl-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-2.0/assets/treeview-rtl-button.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/close-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/cursor-handle-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/maximize-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scalable/minimize-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.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: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.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@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-after-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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-horz-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-horz-marks-before-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-after-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/scale-vert-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/scale-vert-marks-before-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-checked@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/assets/selectionmode-checkbox-unchecked@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-3.0/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/close-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/cursor-handle-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/maximize-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scalable/minimize-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.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: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.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@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-after-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-horz-marks-before-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-after-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider-disabled@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/scale-vert-marks-before-slider@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-checked@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked-dark@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/assets/selectionmode-checkbox-unchecked@2.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/gtk-4.0/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/index.theme: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=X-GNOME-Metatheme 3 | Name=Lavanda-Dark-Compact 4 | Comment=An Clean Gtk+ theme based on Elegant Design 5 | Encoding=UTF-8 6 | 7 | [X-GNOME-Metatheme] 8 | GtkTheme=Lavanda-Dark-Compact 9 | MetacityTheme=Lavanda-Dark-Compact 10 | IconTheme=Tela-circle-Dark 11 | CursorTheme=Lavanda-cursors 12 | ButtonLayout=close,minimize,maximize:menu 13 | -------------------------------------------------------------------------------- /.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/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/metacity-1/thumbnail.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/bottom-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/stick-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/themerc: -------------------------------------------------------------------------------- 1 | button_offset=6 2 | button_spacing=0 3 | 4 | show_app_icon=false 5 | 6 | full_width_title=true 7 | 8 | title_shadow_active=false 9 | title_shadow_inactive=false 10 | 11 | title_horizontal_offset=3 12 | 13 | active_text_color=#afafaf 14 | active_text_shadow_color=#252525 15 | 16 | inactive_text_color=#808080 17 | inactive_text_shadow_color=#252525 18 | 19 | shadow_delta_height=2 20 | shadow_delta_width=0 21 | shadow_delta_x=0 22 | shadow_delta_y=-5 23 | shadow_opacity=40 24 | -------------------------------------------------------------------------------- /.themes/.themes/Lavanda-Dark-Compact-Tokyonight/xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/bottom-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/bottom-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/bottom-left-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/bottom-left-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/bottom-right-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/bottom-right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/bottom-right-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/close-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/close-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/close-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/close-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/hide-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/hide-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/hide-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/hide-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/hide-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/left-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/left-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/left-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/left-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/maximize-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/maximize-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/maximize-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/maximize-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/maximize-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/menu-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/right-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/right-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/right-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/right-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-toggled-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-toggled-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-toggled-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/shade-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/shade-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-toggled-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-toggled-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-prelight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-toggled-prelight.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/stick-toggled-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/stick-toggled-pressed.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/themerc: -------------------------------------------------------------------------------- 1 | button_offset=12 2 | button_spacing=6 3 | 4 | show_app_icon=true 5 | 6 | full_width_title=true 7 | 8 | title_shadow_active=false 9 | title_shadow_inactive=false 10 | 11 | title_horizontal_offset=3 12 | 13 | active_text_color=#20212E 14 | active_text_shadow_color=#20212E 15 | 16 | inactive_text_color=#20212E 17 | inactive_text_shadow_color=#20212E 18 | 19 | shadow_delta_height=2 20 | shadow_delta_width=0 21 | shadow_delta_x=0 22 | shadow_delta_y=-5 23 | shadow_opacity=40 24 | -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-1-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-1-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-1-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-1-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-2-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-2-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-2-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-2-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-3-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-3-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-3-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-3-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-4-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-4-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-4-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-4-inactive.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-5-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-5-active.png -------------------------------------------------------------------------------- /.themes/.themes/cirkles/xfwm4/title-5-inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/.themes/.themes/cirkles/xfwm4/title-5-inactive.png -------------------------------------------------------------------------------- /Comfy/assets/_navbar.scss: -------------------------------------------------------------------------------- 1 | :root .Root__nav-bar { 2 | .main-rootlist-wrapper { 3 | div:nth-child(2) { 4 | >li { 5 | .main-yourLibraryX-listRowEntityImage { 6 | border-radius: var(--border-radius) !important; 7 | } 8 | 9 | >div { 10 | &:active::after { 11 | background-color: var(--spice-highlight-elevated); 12 | top: 0; 13 | bottom: 0; 14 | left: 0; 15 | right: 0; 16 | } 17 | } 18 | } 19 | } 20 | 21 | [role="presentation"]>li>div>div>div>div>div>.x-entityImage-imageContainer { 22 | box-shadow: 0 4px 60px rgba(var(--spice-rgb-shadow), .0) !important; 23 | } 24 | } 25 | 26 | // Library header shadow 27 | .main-yourLibraryX-isScrolled { 28 | box-shadow: none !important; 29 | } 30 | 31 | // Scrollbar 32 | .os-scrollbar { 33 | display: none; 34 | } 35 | } -------------------------------------------------------------------------------- /Comfy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "comfy", 3 | "version": "1.0.0", 4 | "description": "Stay comfy while listening to music", 5 | "main": "theme.script.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "compile-scss": "sass app.scss app.css" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/Comfy-Themes/Spicetify.git" 13 | }, 14 | "keywords": ["comfy", "spicetify"], 15 | "author": "Comfy-Themes", 16 | "license": "WTFPL", 17 | "bugs": { 18 | "url": "https://github.com/Comfy-Themes/Spicetify/issues" 19 | }, 20 | "homepage": "https://github.com/Comfy-Themes/Spicetify#readme", 21 | "dependencies": { 22 | "node-sass": "^7.0.3" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Comfy/theme.js: -------------------------------------------------------------------------------- 1 | (() => { 2 | const themeScript = document.createElement("SCRIPT"); 3 | themeScript.setAttribute("type", "text/javascript"); 4 | themeScript.setAttribute("src", "https://comfy-themes.github.io/Spicetify/Comfy/theme.script.js"); 5 | document.head.appendChild(themeScript); 6 | })(); 7 | -------------------------------------------------------------------------------- /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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/GoogleSansNerdFont-Regular.ttf -------------------------------------------------------------------------------- /alacritty/.config/alacritty/alacritty.toml: -------------------------------------------------------------------------------- 1 | import = ["/home/greed/.config/alacritty/tokyonight/tokyonight-night.toml"] 2 | 3 | [cursor.style] 4 | shape = "Underline" 5 | 6 | [cursor.vi_mode_style] 7 | shape = "Block" 8 | 9 | [env] 10 | TERM = "xterm-256color" 11 | 12 | 13 | [font] 14 | size = 13 15 | 16 | [font.normal] 17 | family = "CaskaydiaMono Nerd Font" 18 | # family = "JetBrainsMono Nerd Font" 19 | 20 | 21 | [window.padding] 22 | x = 2 23 | y = 1 24 | -------------------------------------------------------------------------------- /alacritty/.config/alacritty/tokyonight/tokyonight-night.toml: -------------------------------------------------------------------------------- 1 | [[colors.indexed_colors]] 2 | color = "0xff9e64" 3 | index = 16 4 | 5 | [[colors.indexed_colors]] 6 | color = "0xdb4b4b" 7 | index = 17 8 | 9 | [colors.bright] 10 | black = "0x414868" 11 | blue = "0x7aa2f7" 12 | cyan = "0x7dcfff" 13 | green = "0x9ece6a" 14 | magenta = "0xbb9af7" 15 | red = "0xf7768e" 16 | white = "0xc0caf5" 17 | yellow = "0xe0af68" 18 | 19 | [colors.normal] 20 | black = "0x15161e" 21 | blue = "0x7aa2f7" 22 | cyan = "0x7dcfff" 23 | green = "0x9ece6a" 24 | magenta = "0xbb9af7" 25 | red = "0xf7768e" 26 | white = "0xa9b1d6" 27 | yellow = "0xe0af68" 28 | 29 | [colors.primary] 30 | background = "0x11121d" 31 | foreground = "0xc0caf5" 32 | -------------------------------------------------------------------------------- /bmodf/hypr/configs/Monitors.conf: -------------------------------------------------------------------------------- 1 | # Monitor Configuration 2 | # Configure your Display resolution, offset, scale and Monitors here, use `hyprctl monitors` to get the info. 3 | 4 | # Monitors 5 | monitor=,preferred,auto,1 6 | 7 | # my G15 Laptop 8 | # monitor = eDP-1, preferred, auto, 1 9 | #monitor = eDP-1, 2560x1440@165, 0x0, 1 #own screen 10 | #monitor = DP-2, preferred, auto, 1 #my Samsung Odyssey-G7 11 | #monitor = DP-1, preferred, auto, 1 12 | #monitor = HDMI-A-1, preferred,auto,1 13 | 14 | # QEMU 15 | # monitor = Virtual-1, 1920x1080@60,auto,1 16 | 17 | # Example : 18 | #monitor=eDP-1,2560x1440@165,0x0,1 19 | #workspace=HDMI-A-1,1 20 | # monitor=HDMI-A-1,720x480@59,1920x0,1,mirror,eDP-1 21 | #workspace=HDMI-A-2,2 22 | 23 | #monitor=eDP-1,transform,0 24 | #monitor=eDP-1,addreserved,10,10,10,49 25 | #workspace=eDP-1,1 26 | 27 | -------------------------------------------------------------------------------- /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/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/backup.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/battery-quarter-solid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/battery-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/battery-status.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/brightness-100.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/brightness-20.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/brightness-40.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/brightness-60.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/brightness-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/brightness-80.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/dropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/dropper.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/microphone-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/microphone-mute.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/microphone.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/music.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/palette.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/picture.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/timer.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/uptime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/uptime.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/volume-high.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/volume-low.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/volume-mid.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/volume-mute.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/icons/vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/icons/vpn.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/images/notification.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/images/notification2.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/images/notification3.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/images/notification4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/bmodf/hypr/dunst/images/notification4.png -------------------------------------------------------------------------------- /bmodf/hypr/dunst/reload: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | pkill dunst 3 | dunst -config ~/.config/dunst/dunstrc & 4 | 5 | notify-send -u critical "Test message: critical test 1" 6 | notify-send -u normal "Test message: normal test 2" 7 | notify-send -u low "Test message: low test 3" 8 | notify-send -u critical "Test message: critical test 4" 9 | notify-send -u normal "Test message: normal test 5" 10 | notify-send -u low "Test message: low test 6" 11 | notify-send -u critical "Test message: critical test 7" 12 | notify-send -u normal "Test message: normal test 8" 13 | notify-send -u low "Test message: low test 9" 14 | -------------------------------------------------------------------------------- /bmodf/hypr/hyprland.conf: -------------------------------------------------------------------------------- 1 | # Sourcing external config files 2 | $configs = $HOME/.config/hypr/configs 3 | 4 | source=$configs/ENVariables.conf 5 | source=$configs/Execs.conf 6 | source=$configs/Keybinds.conf 7 | source=$configs/Monitors.conf 8 | source=$configs/WindowRules.conf 9 | source=$configs/Settings.conf 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/AirplaneMode.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | wifi="$(nmcli r wifi | awk 'FNR = 2 {print $1}')" 3 | if [ "$wifi" == "enabled" ]; then 4 | rfkill block all & 5 | notify-send -t 1000 'airplane mode: active' 6 | else 7 | rfkill unblock all & 8 | notify-send -t 1000 'airplane mode: inactive' 9 | fi 10 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/AppAutoClose.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Variables: put the process names you want to auto close here. Make sure to add "" and inside the () 4 | processes=("pavucontrol") 5 | 6 | # Loop through each process name 7 | while true; do 8 | active_window=$(hyprctl activewindow | grep class | awk '{print $2}') 9 | 10 | # Loop through each process name in the array 11 | for process in "${processes[@]}"; do 12 | if [ "$active_window" == "$process" ]; then 13 | # If the active window matches the process, mark it as active 14 | process_active=true 15 | else 16 | # If not, mark it as inactive and try to kill the process 17 | process_active=false 18 | pkill "$process" 19 | fi 20 | done 21 | 22 | sleep 5 23 | done 24 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/ChangeBlur.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | STATE=$(hyprctl -j getoption decoration:blur:passes | jq ".int") 4 | 5 | if [ "${STATE}" == "2" ]; then 6 | hyprctl keyword decoration:blur:size 3 7 | hyprctl keyword decoration:blur:passes 1 8 | notify-send "Less blur" 9 | else 10 | hyprctl keyword decoration:blur:size 7.8 11 | hyprctl keyword decoration:blur:passes 2 12 | notify-send "Normal blur" 13 | fi 14 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/ClipManager.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # WOFI STYLES 4 | # CONFIG="$HOME/.config/hypr/wofi/WofiBig/config" 5 | # STYLE="$HOME/.config/hypr/wofi/style.css" 6 | # COLORS="$HOME/.config/hypr/wofi/colors" 7 | # 8 | # if [[ ! $(pidof wofi) ]]; then 9 | # cliphist list | rofi --show dmenu --prompt 'Search...' \ 10 | # --conf ${CONFIG} --style ${STYLE} --color ${COLORS} \ 11 | # --width=600 --height=400 | cliphist decode | wl-copy 12 | # else 13 | # pkill wofi 14 | # fi 15 | cliphist list | rofi -dmenu | cliphist decode | wl-copy 16 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Dunst.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # CONFIG="$HOME/.config/hypr/dunst/dunstrc" 4 | 5 | # if [[ ! $(pidof dunst) ]]; then 6 | # dunst -conf ${CONFIG} 7 | # fi 8 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/GameMode.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | HYPRGAMEMODE=$(hyprctl getoption animations:enabled | awk 'NR==2{print $2}') 3 | if [ "$HYPRGAMEMODE" = 1 ] ; then 4 | hyprctl --batch "\ 5 | keyword animations:enabled 0;\ 6 | keyword decoration:drop_shadow 0;\ 7 | keyword decoration:blur 0;\ 8 | keyword general:gaps_in 0;\ 9 | keyword general:gaps_out 0;\ 10 | keyword general:border_size 1;\ 11 | keyword decoration:rounding 0" 12 | swww kill 13 | notify-send "animations off" 14 | exit 15 | fi 16 | hyprctl reload 17 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Help.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | kitty -e nvim ~/.config/hypr/HelpFile.md 3 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/LidSwitch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if grep open /proc/acpi/button/lid/LID/state; then 4 | hyprctl keyword monitor "eDP-1, preferred, auto, 1" 5 | else 6 | if [[ `hyprctl monitors | grep "Monitor" | wc -l` != 1 ]]; then 7 | hyprctl keyword monitor "eDP-1, disable" 8 | fi 9 | fi -------------------------------------------------------------------------------- /bmodf/hypr/scripts/LockScreen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | CONFIG="$HOME/.config/hypr/swaylock/config" 4 | 5 | sleep 0.5s; swaylock --config ${CONFIG} & disown 6 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/PortalHyprlandArch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sleep 1 3 | killall xdg-desktop-portal-hyprland 4 | killall xdg-desktop-portal-wlr 5 | killall xdg-desktop-portal 6 | /usr/lib/xdg-desktop-portal-hyprland & 7 | sleep 2 8 | /usr/lib/xdg-desktop-portal & 9 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/RainbowBorders.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | function random_hex() { 4 | random_hex=("0xff$(openssl rand -hex 3)") 5 | echo $random_hex 6 | } 7 | 8 | hyprctl keyword general:col.active_border $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) 270deg 9 | 10 | hyprctl keyword general:col.inactive_border $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) $(random_hex) 270deg -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Startup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | SCRIPTSDIR=$HOME/.config/hypr/scripts 4 | 5 | # Kill already running process 6 | _ps=(waybar mako) 7 | for _prs in "${_ps[@]}"; do 8 | if [[ $(pidof ${_prs}) ]]; then 9 | killall -9 ${_prs} 10 | fi 11 | done 12 | 13 | # Lauch notification daemon (dunst) 14 | /usr/lib/xfce4/notifyd/xfce4-notifyd 15 | # ${SCRIPTSDIR}/Dunst.sh & 16 | 17 | # Lauch statusbar (waybar) 18 | ${SCRIPTSDIR}/Waybar.sh & 19 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Sunset.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | wlsunset -t 4000 -T 6500 -d 900 -S 07:00 -s 19:00 -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Waybar.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | CONFIG="$HOME/.config/hypr/waybar/config" 4 | STYLE="$HOME/.config/hypr/waybar/style.css" 5 | 6 | if [[ ! $(pidof waybar) ]]; then 7 | waybar --bar main-bar --log-level error --config ${CONFIG} --style ${STYLE} 8 | fi 9 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/Wofi.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | CONFIG="$HOME/.config/hypr/wofi/config" 4 | STYLE="$HOME/.config/hypr/wofi/style.css" 5 | COLORS="$HOME/.config/hypr/wofi/colors" 6 | 7 | if [[ ! $(pidof wofi) ]]; then 8 | wofi --show drun --prompt 'Search...' --conf ${CONFIG} --style ${STYLE} --color ${COLORS} 9 | else 10 | pkill wofi 11 | fi 12 | -------------------------------------------------------------------------------- /bmodf/hypr/scripts/WofiBig.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | CONFIG="$HOME/.config/hypr/wofi/WofiBig/config" 4 | STYLE="$HOME/.config/hypr/wofi/style.css" 5 | COLORS="$HOME/.config/hypr/wofi/colors" 6 | 7 | if [[ ! $(pidof wofi) ]]; then 8 | wofi --show drun --prompt 'Search...' --conf ${CONFIG} --style ${STYLE} --color ${COLORS} 9 | else 10 | pkill wofi 11 | fi 12 | -------------------------------------------------------------------------------- /bmodf/hypr/waybar/config: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/waybar/configs/config-simple -------------------------------------------------------------------------------- /bmodf/hypr/waybar/configs/config-simple: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "include": "~/.config/hypr/waybar/modules", 4 | "layer": "top", 5 | //"mode": "dock", 6 | "exclusive": true, 7 | "passthrough": false, 8 | "position": "top", 9 | "spacing": 3, 10 | "fixed-center": true, 11 | "ipc": true, 12 | "margin-top": 6, 13 | "margin-left": 8, 14 | "margin-right": 8, 15 | 16 | "modules-left": [ 17 | "hyprland/workspaces", 18 | "hyprland/window" 19 | ], 20 | "modules-center": [ 21 | "mpris", 22 | ], 23 | "modules-right": [ 24 | "custom/updater", 25 | "memory", 26 | "battery", 27 | "network", 28 | "backlight", 29 | "pulseaudio", 30 | "pulseaudio#microphone", 31 | "clock", 32 | "tray", 33 | ], 34 | 35 | 36 | } 37 | -------------------------------------------------------------------------------- /bmodf/hypr/waybar/style.css: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/waybar/style/style-default_alter.css -------------------------------------------------------------------------------- /bmodf/hypr/wofi/WofiBig/config: -------------------------------------------------------------------------------- 1 | ## Wofi Config 2 | 3 | ## General 4 | show=drun 5 | prompt=Apps 6 | normal_window=true 7 | layer=overlay 8 | term=foot 9 | columns=5 10 | 11 | ## Geometry 12 | width=60% 13 | height=40% 14 | location=bottom_left 15 | orientation=vertical 16 | halign=fill 17 | line_wrap=off 18 | dynamic_lines=false 19 | 20 | ## Images 21 | allow_markup=true 22 | allow_images=true 23 | image_size=24 24 | 25 | ## Search 26 | exec_search=false 27 | hide_search=false 28 | parse_search=false 29 | insensitive=false 30 | 31 | ## Other 32 | hide_scroll=true 33 | no_actions=true 34 | sort_order=default 35 | gtk_dark=true 36 | filter_rate=100 37 | 38 | ## Keys 39 | key_expand=Tab 40 | key_exit=Escape 41 | -------------------------------------------------------------------------------- /bmodf/hypr/wofi/config: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/wofi/configs/config-default -------------------------------------------------------------------------------- /bmodf/hypr/wofi/configs/config-default: -------------------------------------------------------------------------------- 1 | ## Wofi Config 2 | 3 | ## General 4 | show=drun 5 | prompt=Apps 6 | normal_window=true 7 | layer=overlay 8 | term=foot 9 | columns=2 10 | 11 | ## Geometry 12 | width=30% 13 | height=30% 14 | location=top_left 15 | orientation=vertical 16 | halign=fill 17 | line_wrap=off 18 | dynamic_lines=false 19 | 20 | ## Images 21 | allow_markup=true 22 | allow_images=true 23 | image_size=24 24 | 25 | ## Search 26 | exec_search=false 27 | hide_search=false 28 | parse_search=false 29 | insensitive=false 30 | 31 | ## Other 32 | hide_scroll=true 33 | no_actions=true 34 | sort_order=default 35 | gtk_dark=true 36 | filter_rate=100 37 | 38 | ## Keys 39 | key_expand=Tab 40 | key_exit=Escape 41 | -------------------------------------------------------------------------------- /bmodf/hypr/wofi/configs/config-gnome: -------------------------------------------------------------------------------- 1 | ## Wofi Config 2 | 3 | ## General 4 | mode=drun,run 5 | run-always_parse_args=true 6 | show=drun 7 | prompt=Apps 8 | #normal_window=true 9 | layer=overlay 10 | term=foot 11 | columns=1 12 | lines=15 13 | 14 | ## Geometry 15 | height=20% 16 | width=12% 17 | location=top_left 18 | xoffset=4 19 | yoffset=10 20 | orientation=vertical 21 | halign=fill 22 | line_wrap=off 23 | dynamic_lines=false 24 | 25 | ## Images 26 | allow_markup=true 27 | allow_images=true 28 | image_size=24 29 | 30 | ## Search 31 | exec_search=false 32 | hide_search=false 33 | parse_search=false 34 | insensitive=false 35 | 36 | ## Other 37 | hide_scroll=false 38 | no_actions=true 39 | sort_order=default 40 | gtk_dark=true 41 | filter_rate=100 42 | 43 | ## Keys 44 | key_expand=Tab 45 | key_exit=Escape 46 | 47 | -------------------------------------------------------------------------------- /bmodf/hypr/wofi/configs/config-plasma: -------------------------------------------------------------------------------- 1 | ## Wofi Config 2 | 3 | ## General 4 | mode=drun,run 5 | run-always_parse_args=true 6 | show=drun 7 | prompt=Apps 8 | #normal_window=true 9 | #layer=overlay 10 | term=foot 11 | columns=1 12 | lines=15 13 | 14 | ## Geometry 15 | height=20% 16 | width=14% 17 | xoffset=10 18 | yoffset=-40 19 | location=bottom_left 20 | orientation=vertical 21 | halign=fill 22 | line_wrap=off 23 | dynamic_lines=false 24 | 25 | ## Images 26 | allow_markup=true 27 | allow_images=true 28 | image_size=24 29 | 30 | ## Search 31 | exec_search=false 32 | hide_search=false 33 | parse_search=false 34 | insensitive=false 35 | 36 | ## Other 37 | hide_scroll=false 38 | no_actions=true 39 | sort_order=default 40 | gtk_dark=true 41 | filter_rate=100 42 | 43 | ## Keys 44 | key_expand=Tab 45 | key_exit=Escape 46 | 47 | -------------------------------------------------------------------------------- /bmodf/hypr/wofi/style.css: -------------------------------------------------------------------------------- 1 | /home/greed/.config/hypr/wofi/styles/style-dark.css -------------------------------------------------------------------------------- /extras/foss_droid.md: -------------------------------------------------------------------------------- 1 | [Google](https://www.google.com) 2 | -------------------------------------------------------------------------------- /fish/.config/fish/completions/uv.fish: -------------------------------------------------------------------------------- 1 | uv generate-shell-completion fish | source 2 | -------------------------------------------------------------------------------- /fish/.config/fish/fish_plugins: -------------------------------------------------------------------------------- 1 | jorgebucaran/fisher 2 | jorgebucaran/nvm.fish 3 | patrickf1/fzf.fish 4 | edouard-lopez/ayu-theme.fish 5 | reitzig/sdkman-for-fish@v2.1.0 6 | jomik/fish-gruvbox 7 | catppuccin/fish 8 | vitallium/tokyonight-fish 9 | -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_report_diff_type.fish: -------------------------------------------------------------------------------- 1 | # helper for _fzf_preview_changed_file 2 | # prints out something like 3 | # ╭────────╮ 4 | # │ Staged │ 5 | # ╰────────╯ 6 | function _fzf_report_diff_type --argument-names diff_type --description "Print a distinct colored header meant to preface a git patch." 7 | # number of "-" to draw is the length of the string to box + 2 for padding 8 | set repeat_count (math 2 + (string length $diff_type)) 9 | set line (string repeat --count $repeat_count ─) 10 | set top_border ╭$line╮ 11 | set btm_border ╰$line╯ 12 | 13 | set_color yellow 14 | echo $top_border 15 | echo "│ $diff_type │" 16 | echo $btm_border 17 | set_color normal 18 | end 19 | -------------------------------------------------------------------------------- /fish/.config/fish/functions/_fzf_report_file_type.fish: -------------------------------------------------------------------------------- 1 | # helper function for _fzf_preview_file 2 | function _fzf_report_file_type --argument-names file_path file_type --description "Explain the file type for a file." 3 | set_color red 4 | echo "Cannot preview '$file_path': it is a $file_type." 5 | set_color normal 6 | end 7 | -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_index_update.fish: -------------------------------------------------------------------------------- 1 | function _nvm_index_update 2 | test ! -d $nvm_data && command mkdir -p $nvm_data 3 | 4 | set --local index $nvm_data/.index 5 | 6 | if not command curl --location --silent $nvm_mirror/index.tab >$index.temp 7 | command rm -f $index.temp 8 | echo "nvm: Can't update index, host unavailable: \"$nvm_mirror\"" >&2 9 | return 1 10 | end 11 | 12 | command awk -v OFS=\t ' 13 | /v0.9.12/ { exit } # Unsupported 14 | NR > 1 { 15 | print $1 (NR == 2 ? " latest" : $10 != "-" ? " lts/" tolower($10) : "") 16 | } 17 | ' $index.temp >$index 18 | 19 | command rm -f $index.temp 20 | end 21 | -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_list.fish: -------------------------------------------------------------------------------- 1 | function _nvm_list 2 | set --local versions $nvm_data/* 3 | set --query versions[1] && 4 | string match --entire --regex -- (string match --regex -- "v\d.+" $versions | 5 | string escape --style=regex | 6 | string join "|" 7 | ) <$nvm_data/.index 8 | 9 | command --all node | 10 | string match --quiet --invert --regex -- "^$nvm_data" && echo system 11 | end 12 | -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_version_activate.fish: -------------------------------------------------------------------------------- 1 | function _nvm_version_activate --argument-names ver 2 | set --global --export nvm_current_version $ver 3 | set --prepend PATH $nvm_data/$ver/bin 4 | end 5 | -------------------------------------------------------------------------------- /fish/.config/fish/functions/_nvm_version_deactivate.fish: -------------------------------------------------------------------------------- 1 | function _nvm_version_deactivate --argument-names ver 2 | test "$nvm_current_version" = "$ver" && set --erase nvm_current_version 3 | set --local index (contains --index -- $nvm_data/$ver/bin $PATH) && 4 | set --erase PATH[$index] 5 | end 6 | -------------------------------------------------------------------------------- /fish/.config/fish/functions/javaenv.fish: -------------------------------------------------------------------------------- 1 | #!/bin/fish 2 | 3 | function javaenv 4 | if test (count $argv) -eq 0 5 | /usr/lib/jvm/ -V 6 | else 7 | switch $argv[1] 8 | case 'ls' 9 | /usr/lib/jvm/ -V 10 | case 'set' 11 | set -xU JAVA_HOME (/usr/lib/jvm/ -v $argv[2]) 12 | end 13 | end 14 | end 15 | 16 | -------------------------------------------------------------------------------- /fonts/GoogleSansNerdFont-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/fonts/GoogleSansNerdFont-Regular.ttf -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight: -------------------------------------------------------------------------------- 1 | palette = 0=#15161e 2 | palette = 1=#f7768e 3 | palette = 2=#9ece6a 4 | palette = 3=#e0af68 5 | palette = 4=#7aa2f7 6 | palette = 5=#bb9af7 7 | palette = 6=#7dcfff 8 | palette = 7=#a9b1d6 9 | palette = 8=#414868 10 | palette = 9=#f7768e 11 | palette = 10=#9ece6a 12 | palette = 11=#e0af68 13 | palette = 12=#7aa2f7 14 | palette = 13=#bb9af7 15 | palette = 14=#7dcfff 16 | palette = 15=#c0caf5 17 | background = #1a1b26 18 | foreground = #c0caf5 19 | cursor-color = #c0caf5 20 | cursor-text = #15161e 21 | selection-background = #33467c 22 | selection-foreground = #c0caf5 23 | -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight-day: -------------------------------------------------------------------------------- 1 | palette = 0=#e9e9ed 2 | palette = 1=#f52a65 3 | palette = 2=#587539 4 | palette = 3=#8c6c3e 5 | palette = 4=#2e7de9 6 | palette = 5=#9854f1 7 | palette = 6=#007197 8 | palette = 7=#6172b0 9 | palette = 8=#a1a6c5 10 | palette = 9=#f52a65 11 | palette = 10=#587539 12 | palette = 11=#8c6c3e 13 | palette = 12=#2e7de9 14 | palette = 13=#9854f1 15 | palette = 14=#007197 16 | palette = 15=#3760bf 17 | background = #e1e2e7 18 | foreground = #3760bf 19 | cursor-color = #3760bf 20 | cursor-text = #e1e2e7 21 | selection-background = #99a7df 22 | selection-foreground = #3760bf 23 | -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight-storm: -------------------------------------------------------------------------------- 1 | palette = 0=#1d202f 2 | palette = 1=#f7768e 3 | palette = 2=#9ece6a 4 | palette = 3=#e0af68 5 | palette = 4=#7aa2f7 6 | palette = 5=#bb9af7 7 | palette = 6=#7dcfff 8 | palette = 7=#a9b1d6 9 | palette = 8=#414868 10 | palette = 9=#f7768e 11 | palette = 10=#9ece6a 12 | palette = 11=#e0af68 13 | palette = 12=#7aa2f7 14 | palette = 13=#bb9af7 15 | palette = 14=#7dcfff 16 | palette = 15=#c0caf5 17 | background = #24283b 18 | foreground = #c0caf5 19 | cursor-color = #c0caf5 20 | cursor-text = #1d202f 21 | selection-background = #364a82 22 | selection-foreground = #c0caf5 23 | -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight_moon: -------------------------------------------------------------------------------- 1 | palette = 0=#1b1d2b 2 | palette = 1=#ff757f 3 | palette = 2=#c3e88d 4 | palette = 3=#ffc777 5 | palette = 4=#82aaff 6 | palette = 5=#c099ff 7 | palette = 6=#86e1fc 8 | palette = 7=#828bb8 9 | palette = 8=#444a73 10 | palette = 9=#ff757f 11 | palette = 10=#c3e88d 12 | palette = 11=#ffc777 13 | palette = 12=#82aaff 14 | palette = 13=#c099ff 15 | palette = 14=#86e1fc 16 | palette = 15=#c8d3f5 17 | background = #222436 18 | foreground = #c8d3f5 19 | cursor-color = #c8d3f5 20 | cursor-text = #222436 21 | selection-background = #2d3f76 22 | selection-foreground = #c8d3f5 23 | -------------------------------------------------------------------------------- /ghostty/.config/ghostty/themes/tokyonight_night: -------------------------------------------------------------------------------- 1 | palette = 0=#15161e 2 | palette = 1=#f7768e 3 | palette = 2=#9ece6a 4 | palette = 3=#e0af68 5 | palette = 4=#7aa2f7 6 | palette = 5=#bb9af7 7 | palette = 6=#7dcfff 8 | palette = 7=#a9b1d6 9 | palette = 8=#414868 10 | palette = 9=#f7768e 11 | palette = 10=#9ece6a 12 | palette = 11=#e0af68 13 | palette = 12=#7aa2f7 14 | palette = 13=#bb9af7 15 | palette = 14=#7dcfff 16 | palette = 15=#c0caf5 17 | background = #1a1b26 18 | foreground = #c0caf5 19 | cursor-color = #c0caf5 20 | cursor-text = #1a1b26 21 | selection-background = #283457 22 | selection-foreground = #c0caf5 23 | -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/discord.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/explorer.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/fetch.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/nvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/nvim.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/rofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/rofi.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/spotify.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/tabliss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/tabliss.png -------------------------------------------------------------------------------- /hypr/.config/hypr/.screenshots/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/.screenshots/wallpaper.png -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/env_vars.conf: -------------------------------------------------------------------------------- 1 | #Setting enviroment variables 2 | # See more at : https://wiki.hyprland.org/Configuring/Environment-variables/ 3 | env = GDK_BACKEND,wayland,x11,* 4 | env = XDG_SESSION_DESKTOP,Hyprland 5 | env = XDG_SESSION_TYPE,wayland 6 | 7 | ################### 8 | ### FIREFOX ### 9 | ################### 10 | env = MOZ_ENABLE_WAYLAND,1 11 | env = GRIMBLAST_HIDE_CURSOR, 0 #Stops hyprpanel/hyprland from crashing when screenshoting with grimblast 12 | 13 | ################### 14 | ###CURSOR THEMES### 15 | ################### 16 | env = HYPRCURSOR_THEME, Bibata-Modern-Classic 17 | env = HYPRCURSOR_SIZE, 24 18 | 19 | # electron >28 apps (may help) 20 | env = ELECTRON_OZONE_PLATFORM_HINT,auto 21 | -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/local_vars.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/configs/local_vars.conf -------------------------------------------------------------------------------- /hypr/.config/hypr/configs/monitors.conf: -------------------------------------------------------------------------------- 1 | monitor=eDP-1,1920x1080@60,0x0,1 2 | monitor = HDMI-A-1, 1366x768, 1920x0, 1 3 | -------------------------------------------------------------------------------- /hypr/.config/hypr/explicit_filter.restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/explicit_filter.restore -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprlock/assets/profile-[1:1-500px].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hypr/.config/hypr/hyprlock/assets/profile-[1:1-500px].png -------------------------------------------------------------------------------- /hypr/.config/hypr/hyprpaper.conf: -------------------------------------------------------------------------------- 1 | 2 | preload = ~/Pictures/Wallpapers/forest_dark_winter.jpg 3 | 4 | #set the default wallpaper(s) seen on initial workspace(s) --depending on the number of monitors used 5 | wallpaper = eDP-1,~/Pictures/Wallpapers/forest_dark_winter.jpg 6 | #enable splash text rendering over the wallpaper 7 | splash = true 8 | 9 | #fully disable ipc 10 | # ipc = off 11 | 12 | -------------------------------------------------------------------------------- /hypr/.config/hypr/scripts/xdph: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sleep 1 3 | killall -e xdg-desktop-portal-hyprland 4 | killall -e xdg-desktop-portal-wlr 5 | killall xdg-desktop-portal 6 | /usr/lib/xdg-desktop-portal-hyprland & 7 | sleep 2 8 | /usr/lib/xdg-desktop-portal & 9 | -------------------------------------------------------------------------------- /hyprpanel/.config/hyprpanel/modules.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /hyprpanel/.config/hyprpanel/modules.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/hyprpanel/.config/hyprpanel/modules.scss -------------------------------------------------------------------------------- /kitty/.config/kitty/dirty_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/kitty/.config/kitty/dirty_glass.png -------------------------------------------------------------------------------- /kitty/.config/kitty/kitty.conf: -------------------------------------------------------------------------------- 1 | # BEGIN_KITTY_THEME 2 | # Catppuccin-Mocha 3 | # 4 | font_family JetBrainsMono Nerd Font 5 | italic_font JetBrainsMono Nerd Font 6 | bold_italic_font JetBrainsMono Nerd Font 7 | font_size 13.0 8 | 9 | confirm_os_window_close 0 10 | tab_bar_edge bottom 11 | tab_bar_style powerline 12 | tab_title_template {title}{' :{}:'.format(num_windows) if num_windows > 1 else ''} 13 | 14 | window_padding_width 10 15 | 16 | modify_font_underline_position -2 17 | include current-theme.conf 18 | # END_KITTY_THEME 19 | -------------------------------------------------------------------------------- /kitty/.config/kitty/kitty.conf.bak: -------------------------------------------------------------------------------- 1 | # BEGIN_KITTY_THEME 2 | # Tokyodark 3 | font_family JetBrainsMono Nerd Font 4 | font_size 13.0 5 | 6 | confirm_os_window_close 0 7 | tab_bar_edge bottom 8 | tab_bar_style powerline 9 | tab_title_template {title}{' :{}:'.format(num_windows) if num_windows > 1 else ''} 10 | 11 | modify_font_underline_position -2 12 | 13 | include current-theme.conf 14 | # END_KITTY_THEME 15 | -------------------------------------------------------------------------------- /kitty/.config/kitty/themes/tokyodark.conf: -------------------------------------------------------------------------------- 1 | color0 #06080a 2 | color1 #ee6d85 3 | color2 #95c561 4 | color3 #d7a65f 5 | color4 #7199ee 6 | color5 #a485dd 7 | color6 #38a89d 8 | color7 #a0a8cd 9 | color8 #212234 10 | color9 #ee6d85 11 | color10 #95c561 12 | color11 #d7a65f 13 | color12 #7199ee 14 | color13 #a485dd 15 | color14 #38a89d 16 | color15 #a0a8cd 17 | background #11121d 18 | selection_foreground #11121d 19 | cursor #a0a8cd 20 | foreground #a0a8cd 21 | selection_background #a0a8cd 22 | -------------------------------------------------------------------------------- /ncmpcpp/.config/ncmpcpp/error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/ncmpcpp/.config/ncmpcpp/error.log -------------------------------------------------------------------------------- /neofetch/.config/neofetch/alien.txt: -------------------------------------------------------------------------------- 1 | ▄ ▄ 2 | ▄ ▀▄ ▄▀ ▄ 3 | █▄█▀███▀█▄█ 4 | ▀█████████▀ 5 | ▄▀ ▀▄ -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/README.md: -------------------------------------------------------------------------------- 1 | # Example_config 2 | 3 | A can be used as an example custom config for nvim, this branch is a minimal 4 | one. Do check the feature_full branch if you need all the ease in your config. 5 | -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/extras/icons.lua: -------------------------------------------------------------------------------- 1 | local M = {} 2 | M.misc = { 3 | arrowdown = "", 4 | collapsed = " ", 5 | expanded = " ", 6 | current = " ", 7 | folder_empty = "", 8 | folder_closed = "", 9 | folder_open = "", 10 | file = "", 11 | v_border = "▐", 12 | } 13 | return M 14 | -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/configs/extras/minimap.lua: -------------------------------------------------------------------------------- 1 | local map = require("mini.map") 2 | map.setup({ 3 | integrations = { 4 | map.gen_integration.builtin_search(), 5 | map.gen_integration.diagnostic(), 6 | map.gen_integration.gitsigns(), 7 | }, 8 | symbols = { 9 | encode = { 10 | " ", 11 | "_", 12 | "-", 13 | "‾", 14 | resolution = { 15 | row = 1, 16 | col = 2, 17 | }, 18 | }, 19 | scroll_line = "▶", 20 | scroll_view = " ", 21 | }, 22 | window = { 23 | focusable = false, 24 | side = "right", 25 | show_integration_count = false, 26 | width = 10, 27 | winblend = 0, 28 | }, 29 | }) 30 | vim.cmd([[:lua MiniMap.open()]]) 31 | require("mini.surround").setup() 32 | -------------------------------------------------------------------------------- /nvim/.config/nvim/lua/custom/init.lua: -------------------------------------------------------------------------------- 1 | local opt = vim.opt 2 | 3 | --------------------------------------> settings <------------------------------------------ 4 | 5 | opt.rnu = true 6 | vim.o.guifont = "CaskaydiaCove NF:h14" 7 | 8 | --------------------------------------> usercommands <------------------------------------------------- 9 | 10 | require("custom.autocmd") 11 | require("custom.usrcmd") 12 | -------------------------------------------------------------------------------- /paru/.config/paru/paru.conf: -------------------------------------------------------------------------------- 1 | # 2 | # $PARU_CONF 3 | # /etc/paru.conf 4 | # ~/.config/paru/paru.conf 5 | # 6 | # See the paru.conf(5) manpage for options 7 | 8 | # 9 | # GENERAL OPTIONS 10 | # 11 | [options] 12 | PgpFetch 13 | Devel 14 | Provides 15 | DevelSuffixes = -git -cvs -svn -bzr -darcs -always -hg -fossil 16 | #AurOnly 17 | BottomUp 18 | RemoveMake 19 | SudoLoop 20 | #UseAsk 21 | #SaveChanges 22 | #CombinedUpgrade 23 | #CleanAfter 24 | #UpgradeMenu 25 | #NewsOnUpgrade 26 | 27 | #LocalRepo 28 | #Chroot 29 | #Sign 30 | #SignDb 31 | #KeepRepoCache 32 | 33 | # 34 | # Binary OPTIONS 35 | # 36 | # [bin] 37 | # FileManager = ranger 38 | #MFlags = --skippgpcheck 39 | # Sudo = doas 40 | -------------------------------------------------------------------------------- /picom/.config/picom/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/picom/.config/picom/log.txt -------------------------------------------------------------------------------- /rm_bak.sh: -------------------------------------------------------------------------------- 1 | mv ~/.config/bspwm.bak ~/.config/bspwm 2 | mv ~/.config/dunst.bak ~/.config/dunst 3 | mv ~/.config/fish.bak ~/.config/fish 4 | mv ~/.config/hypr.bak ~/.config/hypr 5 | mv ~/.config/mpd.bak ~/.config/mpd 6 | mv ~/.config/ncmpcpp.bak ~/.config/ncmpcpp 7 | mv ~/.config/neofetch.bak ~/.config/neofetch 8 | mv ~/.config/picom.bak ~/.config/picom 9 | mv ~/.config/polybar.bak ~/.config/polybar 10 | mv ~/.config/qtile.bak ~/.config/qtile 11 | mv ~/.config/rofi.bak ~/.config/rofi 12 | mv ~/.config/sxhkd.bak ~/.config/sxhkd 13 | mv ~/.config/waybar.bak ~/.config/waybar 14 | mv ~/.config/starship.toml.bak ~/.config/starship.toml 15 | 16 | -------------------------------------------------------------------------------- /rofi/.config/rofi/colors/catppuccin.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Colors 7 | **/ 8 | 9 | * { 10 | background: #1E1D2FFF; 11 | background-alt: #282839FF; 12 | foreground: #D9E0EEFF; 13 | selected: #7AA2F7FF; 14 | active: #ABE9B3FF; 15 | urgent: #F28FADFF; 16 | } 17 | -------------------------------------------------------------------------------- /rofi/.config/rofi/colors/tokyonight.rasi: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * 4 | * Author : Aditya Shakya (adi1090x) 5 | * Github : @adi1090x 6 | * 7 | * Colors 8 | **/ 9 | 10 | * { 11 | background: #1A1B26FF; 12 | background-alt: #282839FF; 13 | foreground: #D9E0EEFF; 14 | selected: #7AA2F7FF; 15 | active: #ABE9B3FF; 16 | urgent: #F28FADFF; 17 | } 18 | -------------------------------------------------------------------------------- /rofi/.config/rofi/images/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/rofi/.config/rofi/images/f.png -------------------------------------------------------------------------------- /rofi/.config/rofi/shared/colors.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Colors 7 | * 8 | * Available Colors Schemes 9 | * 10 | * adapta catppuccin everforest navy paper 11 | * arc cyberpunk gruvbox nord solarized 12 | * black dracula lovelace onedark yousai 13 | * 14 | **/ 15 | 16 | /* Import color-scheme from `colors` directory */ 17 | 18 | @import "~/.config/rofi/colors/tokyonight.rasi" 19 | -------------------------------------------------------------------------------- /rofi/.config/rofi/shared/fonts.rasi: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | * Author : Aditya Shakya (adi1090x) 4 | * Github : @adi1090x 5 | * 6 | * Fonts 7 | * 8 | **/ 9 | 10 | * { 11 | font: "JetBrains Mono Nerd Font 10"; 12 | } 13 | -------------------------------------------------------------------------------- /scripts/.local/scripts/alert: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | paplay ~/.local/share/sounds/notifsound.ogg 4 | -------------------------------------------------------------------------------- /scripts/.local/scripts/arrpc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd ~/Dev/hobby_projects/arRPC/ 3 | node src/ 4 | -------------------------------------------------------------------------------- /scripts/.local/scripts/checkforupdates: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Check for updates and count them 4 | wget -q --spider https://www.google.com 5 | 6 | # Check if there was an error fetching updates 7 | if [ $? -ne 0 ]; then 8 | echo "ERROR!" 9 | # Otherwise, count the number of updates 10 | else 11 | updates=$(checkupdates | wc -l) 12 | 13 | # Check if there are no updates 14 | if [[ $updates -eq 0 ]]; then 15 | echo "Fully Updated" 16 | # Check if there is one update 17 | elif [[ $updates -eq 1 ]]; then 18 | echo "1 Update" 19 | # Otherwise, display the number of updates 20 | else 21 | echo "$updates Updates" 22 | fi 23 | fi 24 | -------------------------------------------------------------------------------- /scripts/.local/scripts/chngwall: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | hyprctl hyprpaper preload ~/wallpapers/Wallpapers/Pictures/Wallpapers/$1 4 | hyprctl hyprpaper wallpaper "eDP-1,~/wallpapers/Wallpapers/Pictures/Wallpapers/$1" 5 | -------------------------------------------------------------------------------- /scripts/.local/scripts/cpu-perf: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo performance | sudo tee /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor 4 | echo performance | sudo tee /sys/devices/system/cpu/cpu2/cpufreq/scaling_governor 5 | echo performance | sudo tee /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor 6 | echo performance | sudo tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor 7 | 8 | -------------------------------------------------------------------------------- /scripts/.local/scripts/cpu-save: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo schedutil | sudo tee /sys/devices/system/cpu/cpu3/cpufreq/scaling_governor 4 | echo schedutil | sudo tee /sys/devices/system/cpu/cpu2/cpufreq/scaling_governor 5 | echo schedutil | sudo tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor 6 | echo schedutil | sudo tee /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor 7 | -------------------------------------------------------------------------------- /scripts/.local/scripts/decr_vol_progress: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- 3 | # get_vol=$(pamixer --get-volume) 4 | # dunstify -h int:value:"${get_vol}" "Volume" 5 | -------------------------------------------------------------------------------- /scripts/.local/scripts/dexopt: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | adb shell cmd package compile -m speed -f -a 3 | adb shell cmd package bg-dexopt-job 4 | -------------------------------------------------------------------------------- /scripts/.local/scripts/drc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | 4 | echo "Entering CHADWM folder......" 5 | echo " " 6 | cd ~/.config/chadwm/chadwm/ 7 | echo "Removing 'config.h'" 8 | echo " " 9 | rm -rf ~/.config/chadwm/chadwm/config.h 10 | echo "Recompiling" 11 | echo " " 12 | doas make install 13 | -------------------------------------------------------------------------------- /scripts/.local/scripts/ffmper: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd ~/Videos 4 | ffmpeg -y -video_size 1920x1080 -framerate 25 -f x11grab -i :0.0 -c:v libx264 -preset ultrafast -crf 0 -pix_fmt yuv420p $1.mp4 5 | -------------------------------------------------------------------------------- /scripts/.local/scripts/finder: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | if [[ $# -eq 1 ]]; then 4 | selected=$1 5 | else 6 | selected=$(find ~/tests ~/.dev/python ~/ -mindepth 1 -maxdepth 1 -type d | fzf) 7 | fi 8 | 9 | if [[ -z $selected ]]; then 10 | exit 0 11 | fi 12 | 13 | selected_name=$(basename "$selected" | tr . _) 14 | tmux_running=$(pgrep tmux) 15 | 16 | if [[ -z $TMUX ]] && [[ -z $tmux_running ]]; then 17 | tmux new-session -s $selected_name -c $selected 18 | exit 0 19 | fi 20 | 21 | if ! tmux has-session -t=$selected_name 2> /dev/null; then 22 | tmux new-session -ds $selected_name -c $selected 23 | fi 24 | 25 | tmux switch-client -t $selected_name 26 | -------------------------------------------------------------------------------- /scripts/.local/scripts/flash_fw: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | fastboot flash abl_ab abl.img 4 | fastboot flash aop_ab aop.img 5 | fastboot flash bluetooth_ab bluetooth.img 6 | fastboot flash cmnlib_ab cmnlib.img 7 | fastboot flash cmnlib64_ab cmnlib64.img 8 | fastboot flash devcfg_ab devcfg.img 9 | fastboot flash dsp_ab dsp.img 10 | fastboot flash featenabler_ab featenabler.img 11 | fastboot flash hyp_ab hyp.img 12 | fastboot flash imagefv_ab imagefv.img 13 | fastboot flash keymaster_ab keymaster.img 14 | fastboot flash modem_ab modem.img 15 | fastboot flash qupfw_ab qupfw.img 16 | fastboot flash tz_ab tz.img 17 | fastboot flash uefisecapp_ab uefisecapp.img 18 | fastboot flash xbl_ab xbl.img 19 | fastboot flash xbl_config_ab xbl_config.img 20 | -------------------------------------------------------------------------------- /scripts/.local/scripts/getvol: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | amixer -D pulse sget Master | grep 'Left:' | awk -F'[][]' '{ print $2 }' | tr -d '%' | head -1 4 | -------------------------------------------------------------------------------- /scripts/.local/scripts/incr_vol_progress: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | wpctl set-volume -l 1.5 @DEFAULT_AUDIO_SINK@ 5%+ 3 | get_vol=$(pamixer --get-volume) 4 | # dunstify -h int:value:"${get_vol}" "Volume " 5 | -------------------------------------------------------------------------------- /scripts/.local/scripts/installuml: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Pre-requisistes 4 | # paru 5 | # sudo 6 | 7 | sudo pacman -S asar 8 | paru -S staruml 9 | cd /opt/StarUML/resources 10 | sudo cp app.asar app.asar.bak && sudo asar extract app.asar app 11 | sudo sed -i "s/setStatus(this, false)/setStatus(this, true)/g" app/src/engine/license-manager.js 12 | sudo sed -i "s/UnregisteredDialog.showDialog()//g" app/src/engine/license-manager.js 13 | sudo asar pack app app.asar 14 | -------------------------------------------------------------------------------- /scripts/.local/scripts/lock_after_suspend.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Get the current session type (x11 or wayland) 4 | SESSION_TYPE=$(loginctl show-session $(loginctl | grep $(whoami) | awk '{print $1}') -p Type --value) 5 | 6 | # Check if the session type is Xorg (x11), and if so, lock the screen 7 | if [ "$SESSION_TYPE" = "x11" ]; then 8 | export DISPLAY=:0 9 | /usr/bin/betterlockscreen -l dim 10 | fi 11 | -------------------------------------------------------------------------------- /scripts/.local/scripts/mic_toggle: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # With icon indicating the state of the mic 3 | 4 | state=`pacmd list-sources | awk '/muted/ { print $2 }' | tail -1` 5 | micStatus="no" 6 | if [ $state = "yes" ]; then 7 | micStatus="on" 8 | icon="~/.config/hypr/icons/microphone.png" 9 | else 10 | micStatus="off" 11 | icon="~/.config/hypr/icons/microphone-mute.png" 12 | fi 13 | pactl set-source-mute 1 toggle 14 | notify-send --hint=int:transient:1 -t 1200 -i $icon "Mic switched: $state" 15 | #dunstify -h int:transient:1 -t 1000 -i $icon "Mic switched: $state" 16 | # ~/Scripts/notify.sh "Mic status" "Mic switched: $micStatus" "/usr/share/icons/Adwaita/32x32/$icon.symbolic.png" 2 update 17 | 18 | -------------------------------------------------------------------------------- /scripts/.local/scripts/notif: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Script to send current volume notification to dunstify 3 | # need depencies pamixer, dunstify and canberra-gtk-play for sound 4 | # add this script to you volume control bind 5 | msgID="2345" 6 | volume="$(pamixer --get-volume)" 7 | 8 | 9 | # check volume 10 | if [ "$volume" -gt "65" ]; then 11 | dunstify " $volume" -t 800 -r $msgID 12 | elif [ "$volume" == "0" ]; then 13 | dunstify " Muted " -t 800 -r $msgID 14 | else 15 | dunstify " $volume" -t 800 -r $msgID 16 | 17 | fi 18 | 19 | # play sound 20 | canberra-gtk-play -i audio-volume-change -d "changeVolume" 21 | -------------------------------------------------------------------------------- /scripts/.local/scripts/ram-usae: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | mem=`free | awk '{print $3}' | tail -2 | head -1` 4 | shared=`free | awk '{print $5}' | tail -2` 5 | 6 | total_mem=$((mem+shared)) 7 | 8 | echo $((total_mem / 1024 / 1024 )) # remove the last division to get the value in MB 9 | -------------------------------------------------------------------------------- /scripts/.local/scripts/recvid: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd ~/Videos/ 4 | wf-recorder --file=$1.mp4 5 | -------------------------------------------------------------------------------- /scripts/.local/scripts/rwb: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | pkill waybar 3 | waybar & 4 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | timestamp = $(%b-%d_%H:%M:%S) 3 | scrot ~/Pictures/Screenshots/"$timestamp".png -e 'xclip -selection clipboard -target image/png -i $f' 4 | 5 | scrot ~/Pictures/Screenshots/%b-%d_%H:%M:%S.png 6 | -------------------------------------------------------------------------------- /scripts/.local/scripts/smoketest: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Normal" 4 | echo -e "\033[1mBold\033[22m" 5 | echo -e "\033[3mItalic\033[23m" 6 | echo -e "\033[3;1mBold Italic\033[0m" 7 | echo -e "\033[4mUnderline\033[24m" 8 | echo "== === !== >= <= =>" 9 | echo "   󰾆   󱑥 󰒲 󰗼" 10 | -------------------------------------------------------------------------------- /scripts/.local/scripts/stpyserv: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ip addr | rg wlan0 | awk '{print $2}' 3 | echo " " 4 | echo "Starting python server" 5 | echo " " 6 | python -m http.server 7 | -------------------------------------------------------------------------------- /scripts/.local/scripts/stshzku: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | adb kill-server 4 | adb start-server 5 | adb devices 6 | adb shell sh /storage/emulated/0/Android/data/moe.shizuku.privileged.api/start.sh 7 | -------------------------------------------------------------------------------- /scripts/.local/scripts/whatsong.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | song_info=$(playerctl metadata --format '{{title}} : {{artist}}') 4 | 5 | echo "$song_info" 6 | -------------------------------------------------------------------------------- /scripts/.local/scripts/xeph: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | HERE=$(dirname $(readlink -f $0)) 4 | SCREEN_SIZE=${SCREEN_SIZE:-800x600} 5 | XDISPLAY=${XDISPLAY:-:1} 6 | LOG_LEVEL=${LOG_LEVEL:-INFO} 7 | APP=${APP:-$(python -c "from libqtile.utils import guess_terminal; print(guess_terminal())")} 8 | if [[ -z $PYTHON ]]; then 9 | PYTHON=python3 10 | fi 11 | 12 | Xephyr +extension RANDR -screen ${SCREEN_SIZE} ${XDISPLAY} -ac & 13 | XEPHYR_PID=$! 14 | ( 15 | sleep 1 16 | env DISPLAY=${XDISPLAY} QTILE_XEPHYR=1 ${PYTHON} "${HERE}"/../bin/qtile start -l ${LOG_LEVEL} $@ & 17 | QTILE_PID=$! 18 | env DISPLAY=${XDISPLAY} ${APP} & 19 | wait $QTILE_PID 20 | kill $XEPHYR_PID 21 | ) 22 | -------------------------------------------------------------------------------- /scripts/.local/scripts/ytdla: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | yt-dlp -x --audio-format mp3 $@ 4 | -------------------------------------------------------------------------------- /systemd/.config/systemd/user/cliphist.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Watch Wayland Clipboard and Store with cliphist 3 | # PartOf and After ensure it starts with and is stopped with the graphical session 4 | PartOf=graphical-session.target 5 | After=graphical-session.target 6 | # Requisite= is usually too strict and can prevent login if this fails 7 | 8 | [Service] 9 | # We need sh -c to handle the pipe correctly. Use full paths. 10 | ExecStart=/bin/sh -c '/usr/bin/wl-paste --watch /usr/bin/cliphist store' 11 | Restart=on-failure 12 | 13 | [Install] 14 | # This makes the service start automatically when graphical-session.target starts 15 | WantedBy=graphical-session.target 16 | -------------------------------------------------------------------------------- /systemd/.config/systemd/user/default.target.wants/batsignal.service: -------------------------------------------------------------------------------- 1 | /usr/lib/systemd/user/batsignal.service -------------------------------------------------------------------------------- /systemd/.config/systemd/user/hypridle.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | PartOf=graphical-session.target 3 | After=graphical-session.target 4 | Requisite=graphical-session.target 5 | 6 | [Service] 7 | ExecStart=/usr/bin/hypridle 8 | Restart=on-failure 9 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | [Unit] 2 | PartOf=graphical-session.target 3 | After=graphical-session.target 4 | Requisite=graphical-session.target 5 | 6 | [Service] 7 | ExecStart=/usr/bin/swayosd-server 8 | Restart=on-failure 9 | -------------------------------------------------------------------------------- /systemd/.config/systemd/user/swww.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | PartOf=graphical-session.target 3 | After=graphical-session.target 4 | Requisite=graphical-session.target 5 | 6 | [Service] 7 | ExecStart=/usr/bin/swww-daemon 8 | Restart=on-failure 9 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/ftplugin/py.lua: -------------------------------------------------------------------------------- 1 | local opt = vim.opt 2 | 3 | opt.shiftwidth = 2 4 | opt.softtabstop = 2 5 | opt.tabstop = 2 6 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/autopair.lua: -------------------------------------------------------------------------------- 1 | require("nvim-autopairs").setup({}) 2 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/gitsigns.lua: -------------------------------------------------------------------------------- 1 | require("gitsigns").setup({ 2 | signs = { 3 | add = { text = "+" }, 4 | change = { text = "~" }, 5 | delete = { text = "_" }, 6 | topdelete = { text = "‾" }, 7 | changedelete = { text = "~" }, 8 | }, 9 | }) 10 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/indent-blankline.lua: -------------------------------------------------------------------------------- 1 | require("indent_blankline").setup({ 2 | -- for example, context is off by default, use this to turn it on 3 | show_current_context = true, 4 | show_current_context_start = true, 5 | }) 6 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/lsp-colors.lua: -------------------------------------------------------------------------------- 1 | -- Lua 2 | require("lsp-colors").setup({ 3 | Error = "#db4b4b", 4 | Warning = "#e0af68", 5 | Information = "#0db9d7", 6 | Hint = "#10B981", 7 | }) 8 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/lsp-config/null-ls.lua: -------------------------------------------------------------------------------- 1 | local null_ls = require("null-ls") 2 | null_ls.setup({ 3 | sources = { 4 | null_ls.builtins.diagnostics.eslint_d, 5 | null_ls.builtins.formatting.eslint_d, 6 | null_ls.builtins.formatting.black, 7 | --null_ls.builtins.formatting.gofmt, 8 | null_ls.builtins.formatting.prettierd, 9 | -- null_ls.builtins.formatting.rustfmt, 10 | null_ls.builtins.formatting.stylua, 11 | }, 12 | }) 13 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/peek.lua: -------------------------------------------------------------------------------- 1 | require('peek').setup({ 2 | auto_load = true, -- whether to automatically load preview when 3 | -- entering another markdown buffer 4 | close_on_bdelete = true, -- close preview window on buffer delete 5 | 6 | syntax = true, -- enable syntax highlighting, affects performance 7 | 8 | theme = 'dark', -- 'dark' or 'light' 9 | 10 | update_on_change = true, 11 | 12 | -- relevant if update_on_change is true 13 | throttle_at = 200000, -- start throttling when file exceeds this 14 | -- amount of bytes in size 15 | throttle_time = 'auto', -- minimum amount of time in milliseconds 16 | -- that has to pass before starting new render 17 | }) 18 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/presence.lua: -------------------------------------------------------------------------------- 1 | require("presence"):setup({ 2 | -- log_level = "debug", 3 | neovim_image_text = "Neovim", 4 | presence_log_level = "error", 5 | presence_editing_text = "Editing « %s »", 6 | presence_file_explorer_text = "Browsing files", 7 | presence_reading_text = "Reading « %s »", 8 | presence_workspace_text = "Working on « %s »", 9 | }) 10 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/telescope.lua: -------------------------------------------------------------------------------- 1 | local telescope = require("telescope") 2 | telescope.setup({ 3 | defaults = { 4 | mappings = { n = { ["o"] = require("telescope.actions").select_default } }, 5 | initial_mode = "insert", 6 | file_ignore_patterns = { ".git/", "node_modules/", "target/" }, 7 | }, 8 | pickers = { 9 | live_grep = { 10 | additional_args = function() 11 | return { "--hidden" } 12 | end, 13 | }, 14 | find_file = { hidden = true }, 15 | }, 16 | extensions = { 17 | file_browser = { hidden = true }, 18 | }, 19 | }) 20 | telescope.load_extension("file_browser") 21 | telescope.load_extension("harpoon") 22 | telescope.load_extension("flutter") 23 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/after/plugin/treesitter.lua: -------------------------------------------------------------------------------- 1 | require("nvim-treesitter.configs").setup({ 2 | ensure_installed = { 3 | -- vim/neovim 4 | "vim", 5 | "lua", 6 | 7 | --web dev 8 | "html", 9 | "css", 10 | "javascript", 11 | "typescript", 12 | "tsx", 13 | 14 | -- c/cpp 15 | "c", 16 | "cpp", 17 | 18 | --markdown 19 | "markdown", 20 | "markdown_inline", 21 | 22 | --fish/bash 23 | "bash", 24 | "fish", 25 | }, 26 | indent = { 27 | enable = true, 28 | -- disable = { 29 | -- "python" 30 | -- }, 31 | }, 32 | highlight = { enable = true }, 33 | }) 34 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/init.lua: -------------------------------------------------------------------------------- 1 | require("greed") 2 | -------------------------------------------------------------------------------- /vanvim/.config/vanvim/lua/greed/init.lua: -------------------------------------------------------------------------------- 1 | require("greed.lazy") 2 | require("greed.set") 3 | require("greed.keymaps") 4 | -------------------------------------------------------------------------------- /vesktop/.config/vesktop/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "discordBranch": "stable", 3 | "minimizeToTray": true, 4 | "arRPC": true, 5 | "splashColor": "rgb(166, 173, 201)", 6 | "splashBackground": "rgb(30, 30, 46)", 7 | "spellCheckLanguages": [ 8 | "en-US", 9 | "en" 10 | ] 11 | } -------------------------------------------------------------------------------- /vesktop/.config/vesktop/settings/quickCss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greed-d/.dotfiles/3db4f3ecc6b7fe320d43366b7b25045e011467a4/vesktop/.config/vesktop/settings/quickCss.css -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/screen_recorder.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | action=$1 4 | 5 | case "$action" in 6 | stop) 7 | pkill -f wf-recorder 8 | notify-send "Screen Recorder" "Recording stopped." 9 | ;; 10 | restart) 11 | sh ~/.config/hypr/scripts/gpu_recorder.sh 12 | ;; 13 | save) 14 | killall -SIGUSR1 gpu-screen-recorder 15 | notify-send "Screen Recorder" "Recording saved." 16 | ;; 17 | *) 18 | echo "Unknown action. Please use 'stop', 'restart', or 'save'." 19 | exit 1 20 | ;; 21 | esac 22 | -------------------------------------------------------------------------------- /waybar/.config/waybar/modules/screen_recorder_init.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if ps aux | grep -v grep | grep wf-recorder >/dev/null; then 4 | echo "{\"text\": \" Recording\", \"tooltip\": \"GPU Screen Recorder is running\", \"class\": \"recording\"}" 5 | else 6 | echo "{\"text\": \" Not Recording\", \"tooltip\": \"GPU Screen Recorder is not running\", \"class\": \"not-recording\"}" 7 | fi 8 | -------------------------------------------------------------------------------- /waybar/.config/waybar/themes/Wall-Dcol.css: -------------------------------------------------------------------------------- 1 | @define-color bar-bg rgba(27, 30, 37, 1); 2 | @define-color main-bg #242830; 3 | @define-color main-fg #ebddbc; 4 | @define-color wb-act-bg #DEC386; 5 | @define-color wb-act-fg #1b1e25; 6 | @define-color wb-hvr-bg #B28999; 7 | @define-color wb-hvr-fg #1b1e25; 8 | -------------------------------------------------------------------------------- /waybar/.config/waybar/themes/colors.css: -------------------------------------------------------------------------------- 1 | /* 2 | waybar dark colors 3 | */ 4 | 5 | @define-color bg_color #1A1B26; 6 | @define-color fg_color #C0CAF5; 7 | @define-color tray_color #414868; 8 | @define-color accent_color #9ECE6A; 9 | @define-color highlight_color #7AA2F7; 10 | @define-color invert_color #1A1B26; 11 | @define-color caution_color #E0AF68; 12 | @define-color urgent_color #F7768E; 13 | @define-color middle_color #9ECE6A; 14 | @define-color first_right_color #7DCFFF; 15 | @define-color middle_right_color #F7768E; 16 | @define-color last_right_color #BB9AF7; 17 | -------------------------------------------------------------------------------- /ytm.css: -------------------------------------------------------------------------------- 1 | /* latte */ 2 | @import url("https://youtubemusic.catppuccin.com/src/latte.css"); 3 | /* frappe */ 4 | @import url("https://youtubemusic.catppuccin.com/src/frappe.css"); 5 | /* macchiato */ 6 | @import url("https://youtubemusic.catppuccin.com/src/macchiato.css"); 7 | /* mocha */ 8 | @import url("https://youtubemusic.catppuccin.com/src/mocha.css"); 9 | 10 | /* if you want to change the accent color, paste this in aswell and change the hex code - or use one of the predefined colors with var(--ctp-'color') - e.g. var(--ctp-maroon) */ 11 | html:not(.style-scope) { 12 | --ctp-accent: #f5e0dc !important; 13 | } 14 | --------------------------------------------------------------------------------