├── .config ├── BetterDiscord │ └── themes │ │ ├── dracula.theme.css │ │ ├── everblush.theme.css │ │ ├── everforest.theme.css │ │ ├── gruv.theme.css │ │ └── nord.theme.css ├── Firefox-Theme │ ├── Dracula.css │ ├── Everblush.css │ ├── Everforest.css │ ├── Gruv.css │ └── Nord.css ├── Kvantum │ ├── Dracula-Solid │ │ ├── Dracula-Solid.kvconfig │ │ └── Dracula-Solid.svg │ ├── Gruv-Solid │ │ ├── Gruv-Solid.kvconfig │ │ └── Gruv-Solid.svg │ ├── MateriaEverforestDark │ │ ├── MateriaEverforestDark.kvconfig │ │ └── MateriaEverforestDark.svg │ ├── Sweet-Mars │ │ ├── Sweet-Mars.kvconfig │ │ └── Sweet-Mars.svg │ ├── Utterly-Nord-Solid │ │ ├── Nord.patchconfig │ │ ├── Utterly-Nord-Solid.kvconfig │ │ └── Utterly-Nord-Solid.svg │ ├── kvantum.kvconfig │ └── themes │ │ ├── Dracula.kvconfig │ │ ├── Everblush.kvconfig │ │ ├── Everforest.kvconfig │ │ ├── Gruv.kvconfig │ │ └── Nord.kvconfig ├── Waybar-Style │ ├── style1 │ │ └── waybar │ │ │ ├── colors │ │ │ ├── dracula.css │ │ │ ├── everblush.css │ │ │ ├── everforest.css │ │ │ ├── gruv.css │ │ │ └── nord.css │ │ │ ├── config.jsonc │ │ │ └── style.css │ ├── style2 │ │ └── waybar │ │ │ ├── colors │ │ │ ├── dracula.css │ │ │ ├── everblush.css │ │ │ ├── everforest.css │ │ │ ├── gruv.css │ │ │ └── nord.css │ │ │ ├── config.jsonc │ │ │ └── style.css │ └── style3 │ │ └── waybar │ │ ├── colors │ │ ├── dracula.css │ │ ├── everblush.css │ │ ├── everforest.css │ │ ├── gruv.css │ │ └── nord.css │ │ ├── config.jsonc │ │ └── style.css ├── btop │ └── btop.conf ├── cava │ ├── shaders │ │ ├── bar_spectrum.frag │ │ ├── northern_lights.frag │ │ └── pass_through.vert │ └── themes │ │ ├── dracula │ │ ├── everblush │ │ ├── everforest │ │ ├── gruv │ │ └── nord ├── code │ └── user │ │ └── settings.json ├── dunst │ ├── dunstrc │ ├── icons │ │ ├── critical.svg │ │ ├── keyboard.svg │ │ └── vol │ │ │ ├── muted-mic.svg │ │ │ ├── muted-speaker.svg │ │ │ ├── unmuted-mic.svg │ │ │ ├── unmuted-speaker.svg │ │ │ ├── vol-0.svg │ │ │ ├── vol-10.svg │ │ │ ├── vol-100.svg │ │ │ ├── vol-15.svg │ │ │ ├── vol-20.svg │ │ │ ├── vol-25.svg │ │ │ ├── vol-30.svg │ │ │ ├── vol-35.svg │ │ │ ├── vol-40.svg │ │ │ ├── vol-45.svg │ │ │ ├── vol-5.svg │ │ │ ├── vol-50.svg │ │ │ ├── vol-55.svg │ │ │ ├── vol-60.svg │ │ │ ├── vol-65.svg │ │ │ ├── vol-70.svg │ │ │ ├── vol-75.svg │ │ │ ├── vol-80.svg │ │ │ ├── vol-85.svg │ │ │ ├── vol-90.svg │ │ │ └── vol-95.svg │ └── themes │ │ ├── dracula │ │ ├── everblush │ │ ├── everforest │ │ ├── gruv │ │ └── nord ├── gtk-3.0 │ └── settings.ini ├── gtk-4.0 │ ├── assets │ │ ├── checkbox-checked-symbolic.svg │ │ ├── checkbox-checked-symbolic@2.svg │ │ ├── checkbox-mixed-symbolic.svg │ │ ├── checkbox-mixed-symbolic@2.svg │ │ ├── close.svg │ │ ├── cursor-handle-symbolic.svg │ │ ├── maximize.svg │ │ ├── minimize.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-hover-symbolic.svg │ │ ├── scale-slider-hover-symbolic@2.svg │ │ ├── scale-slider-symbolic.svg │ │ ├── scale-slider-symbolic@2.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.svg │ ├── gtk-dark.css │ ├── gtk.css │ └── thumbnail.png ├── hypr │ ├── hyprland.conf │ ├── hyprlock-themes │ │ ├── dracula.conf │ │ ├── everblush.conf │ │ ├── everforest.conf │ │ ├── gruv.conf │ │ └── nord.conf │ ├── hyprshade.toml │ ├── keybindings.conf │ ├── scripts │ │ ├── cava.sh │ │ ├── cliphist.sh │ │ ├── cpuinfo.sh │ │ ├── logoutlaunch.sh │ │ ├── resetxdgportal.sh │ │ ├── rofilaunch.sh │ │ ├── rofiselect.sh │ │ ├── shaders.sh │ │ ├── songdetail.sh │ │ ├── switch1.sh │ │ ├── switch2.sh │ │ ├── switch3.sh │ │ ├── switch4.sh │ │ ├── switch5.sh │ │ ├── switch6.sh │ │ ├── switch7.sh │ │ ├── switchmaster.sh │ │ ├── switchwaybar.sh │ │ ├── swwwallpaper.sh │ │ ├── systemupdate.sh │ │ ├── themectl.sh │ │ ├── themeswitcher.sh │ │ └── volumecontrol.sh │ ├── shaders │ │ ├── active_shader │ │ ├── redshift.glsl │ │ ├── vibrance-custom.glsl │ │ └── vibrant.glsl │ ├── themes │ │ ├── Dracula.conf │ │ ├── Everblush.conf │ │ ├── Everforest.conf │ │ ├── Gruv.conf │ │ ├── Nord.conf │ │ └── common.conf │ └── windowrules.conf ├── kitty │ ├── kitty.conf │ └── themes │ │ ├── Dracula.conf │ │ ├── Everblush.conf │ │ ├── Everforest.conf │ │ ├── Gruv.conf │ │ └── Nord.conf ├── logseq-themes │ ├── dracula.css │ ├── everblush.css │ ├── everforest.css │ ├── gruv.css │ └── nord.css ├── neofetch │ ├── config.conf │ └── pngs │ │ ├── Screenshot_2024-03-01_at_15-54-09_BwessedAI_User_Profile_DeviantArt-removebg-preview.png │ │ └── gojo_satoru.png ├── nwg-look │ └── config ├── okular-theme │ ├── dracula │ ├── everblush │ ├── everforest │ ├── gruv │ └── nord ├── pcmanfm-qt │ └── default │ │ └── settings.conf ├── qt5ct │ ├── colors │ │ ├── Dracula.conf │ │ ├── Everblush.conf │ │ ├── Everforest.conf │ │ ├── Gruv.conf │ │ └── Nord.conf │ └── qt5ct.conf ├── qt6ct │ ├── colors │ │ ├── Dracula.conf │ │ ├── Everblush.conf │ │ ├── Everforest.conf │ │ ├── Gruv.conf │ │ └── Nord.conf │ └── qt6ct.conf ├── ranger │ └── rc.conf ├── rofi │ ├── assets │ │ ├── style_1.png │ │ ├── style_2.png │ │ ├── style_3.png │ │ └── style_4.png │ ├── clipboard.rasi │ ├── config.rasi │ ├── styles │ │ ├── style_1.rasi │ │ ├── style_2.rasi │ │ ├── style_3.rasi │ │ └── style_4.rasi │ ├── themes │ │ ├── dracula.rasi │ │ ├── everblush.rasi │ │ ├── everforest.rasi │ │ ├── gruv.rasi │ │ └── nord.rasi │ └── themeselect.rasi ├── swww │ ├── dracula │ │ ├── dracula rach.png │ │ ├── old library.png │ │ ├── planet001.png │ │ ├── plants-foliage-dark.jpg │ │ ├── rosemary.png │ │ └── sexy arch .png │ ├── everblush │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── arch everblush.png │ │ ├── birdseye.jpg │ │ ├── plant.png │ │ ├── retro.png │ │ └── tech.png │ ├── everforest │ │ ├── NierAutomata2BAlt.jpg │ │ ├── aerial city.png │ │ ├── arch baby.png │ │ ├── everforest firewatch .png │ │ ├── forest_stairs.jpg │ │ ├── hintergrund.png │ │ └── retro setup.png │ ├── gruv │ │ ├── Perfect Wall.png │ │ ├── ThingiesCafe.jpg │ │ ├── astronaut-minimalism-gruvbox-simple-background-2302918-wallhere.com.jpg │ │ ├── gruv retro setup.png │ │ ├── gruv-kanji.png │ │ ├── gruv-mistakes.png │ │ └── satellite.jpg │ ├── nord │ │ ├── archlinux.png │ │ ├── booo.png │ │ ├── mist_forest_nord.jpg │ │ ├── nord dark.png │ │ ├── nord.png │ │ └── visual-coding.png │ └── wall.ctl ├── waybar │ ├── colors │ │ ├── dracula.css │ │ ├── everblush.css │ │ ├── everforest.css │ │ ├── gruv.css │ │ └── nord.css │ ├── config.jsonc │ └── style.css ├── wlogout │ ├── colors │ │ ├── dracula.css │ │ ├── everblush.css │ │ ├── everforest.css │ │ ├── gruv.css │ │ └── nord.css │ ├── icons │ │ ├── lock.png │ │ ├── logout.png │ │ ├── reboot.png │ │ ├── shutdown.png │ │ ├── sleep.png │ │ └── suspend.png │ ├── layout │ └── style.css └── xsettingsd │ └── xsettingsd.conf ├── .gtkrc-2.0 ├── .icons ├── BeautyDream-20240521180603.tar.gz ├── Bibata-Modern-Ice.tar.xz ├── Nordzy-turquoise-dark.tar.gz ├── Readme.txt ├── Tela-circle-dracula.tar.xz ├── Zafiro-Nord-Black.tar.xz ├── default │ └── index.theme └── gruvbox-plus-icon-pack.6.1.1.tar.gz ├── .themes ├── Dracula.tar.xz ├── Ever-Blush.zip ├── Everforest-Dark-Soft-B-MB.zip ├── Gruvbox-Dark-B-LB.zip ├── Nordic-darker.tar.xz └── Readme.txt ├── .zshrc ├── README.md ├── app.lst └── fonts ├── Atkinson_Hyperlegible ├── AtkinsonHyperlegible-Bold.ttf ├── AtkinsonHyperlegible-BoldItalic.ttf ├── AtkinsonHyperlegible-Italic.ttf ├── AtkinsonHyperlegible-Regular.ttf └── OFL.txt ├── FiraCode ├── FiraCodeNerdFont-Bold.ttf ├── FiraCodeNerdFont-Light.ttf ├── FiraCodeNerdFont-Medium.ttf ├── FiraCodeNerdFont-Regular.ttf ├── FiraCodeNerdFont-Retina.ttf ├── FiraCodeNerdFont-SemiBold.ttf ├── FiraCodeNerdFontMono-Bold.ttf ├── FiraCodeNerdFontMono-Light.ttf ├── FiraCodeNerdFontMono-Medium.ttf ├── FiraCodeNerdFontMono-Regular.ttf ├── FiraCodeNerdFontMono-Retina.ttf ├── FiraCodeNerdFontMono-SemiBold.ttf ├── FiraCodeNerdFontPropo-Bold.ttf ├── FiraCodeNerdFontPropo-Light.ttf ├── FiraCodeNerdFontPropo-Medium.ttf ├── FiraCodeNerdFontPropo-Regular.ttf ├── FiraCodeNerdFontPropo-Retina.ttf ├── FiraCodeNerdFontPropo-SemiBold.ttf ├── LICENSE └── README.md ├── Grechen_Fuemen ├── GrechenFuemen-Regular.ttf └── OFL.txt ├── IBM_Plex_Sans ├── IBMPlexSans-Bold.ttf ├── IBMPlexSans-BoldItalic.ttf ├── IBMPlexSans-ExtraLight.ttf ├── IBMPlexSans-ExtraLightItalic.ttf ├── IBMPlexSans-Italic.ttf ├── IBMPlexSans-Light.ttf ├── IBMPlexSans-LightItalic.ttf ├── IBMPlexSans-Medium.ttf ├── IBMPlexSans-MediumItalic.ttf ├── IBMPlexSans-Regular.ttf ├── IBMPlexSans-SemiBold.ttf ├── IBMPlexSans-SemiBoldItalic.ttf ├── IBMPlexSans-Thin.ttf ├── IBMPlexSans-ThinItalic.ttf └── OFL.txt ├── Inter └── Inter-VariableFont_slnt,wght.ttf ├── JetBrains_Mono ├── JetBrainsMono-Italic-VariableFont_wght.ttf ├── JetBrainsMono-VariableFont_wght.ttf ├── OFL.txt ├── README.txt └── static │ ├── JetBrainsMono-Bold.ttf │ ├── JetBrainsMono-BoldItalic.ttf │ ├── JetBrainsMono-ExtraBold.ttf │ ├── JetBrainsMono-ExtraBoldItalic.ttf │ ├── JetBrainsMono-ExtraLight.ttf │ ├── JetBrainsMono-ExtraLightItalic.ttf │ ├── JetBrainsMono-Italic.ttf │ ├── JetBrainsMono-Light.ttf │ ├── JetBrainsMono-LightItalic.ttf │ ├── JetBrainsMono-Medium.ttf │ ├── JetBrainsMono-MediumItalic.ttf │ ├── JetBrainsMono-Regular.ttf │ ├── JetBrainsMono-SemiBold.ttf │ ├── JetBrainsMono-SemiBoldItalic.ttf │ ├── JetBrainsMono-Thin.ttf │ └── JetBrainsMono-ThinItalic.ttf ├── Madness ├── Madness.eot ├── Madness.svg ├── Madness.ttf └── Madness.woff ├── MapleMono ├── MapleMono-Bold.ttf ├── MapleMono-BoldItalic.ttf ├── MapleMono-Italic.ttf ├── MapleMono-Light.ttf ├── MapleMono-LightItalic.ttf └── MapleMono-Regular.ttf ├── Monaspace ├── MonaspaceArgonVarVF[wght,wdth,slnt].ttf ├── MonaspaceKryptonVarVF[wght,wdth,slnt].ttf ├── MonaspaceNeonVarVF[wght,wdth,slnt].ttf ├── MonaspaceRadonVarVF[wght,wdth,slnt].ttf └── MonaspaceXenonVarVF[wght,wdth,slnt].ttf ├── Mononoki ├── mononoki-Regular Nerd Font Complete Mono.ttf └── mononoki-Regular Nerd Font Complete.ttf ├── Nunito ├── Nunito-Black.ttf ├── Nunito-BlackItalic.ttf ├── Nunito-Bold.ttf ├── Nunito-BoldItalic.ttf ├── Nunito-ExtraBold.ttf ├── Nunito-ExtraBoldItalic.ttf ├── Nunito-ExtraLight.ttf ├── Nunito-ExtraLightItalic.ttf ├── Nunito-Italic.ttf ├── Nunito-Light.ttf ├── Nunito-LightItalic.ttf ├── Nunito-Medium.ttf ├── Nunito-MediumItalic.ttf ├── Nunito-Regular.ttf ├── Nunito-SemiBold.ttf └── Nunito-SemiBoldItalic.ttf ├── Readme ├── camomile └── Camomile.ttf ├── florentia-family ├── florentia.black-italic.ttf ├── florentia.black.ttf ├── florentia.bold-italic.ttf ├── florentia.bold.ttf ├── florentia.extrabold-italic.ttf ├── florentia.extrabold.ttf ├── florentia.extralight-italic.ttf ├── florentia.extralight.ttf ├── florentia.fat-italic.ttf ├── florentia.fat.ttf ├── florentia.italic.ttf ├── florentia.light-italic.ttf ├── florentia.light.ttf ├── florentia.medium-italic.ttf ├── florentia.medium.ttf ├── florentia.regular.ttf ├── florentia.thin-italic.ttf ├── florentia.thin.ttf └── readme.txt ├── history-yenifer-font ├── HistoryYenifer-8M9JB.ttf └── info.txt ├── johanvaaler-font ├── Johanvaaler-7ql4.ttf ├── Johanvaaler-wZp6.ttf ├── JohanvaalerBold-mD45.ttf ├── JohanvaalerBolditalic-ddwZ.ttf ├── JohanvaalerItalic-Pdn7.ttf ├── JohanvaalerSolid-Lvp3.ttf ├── JohanvaalerSolidbold-XRKG.ttf ├── info.txt └── misc │ └── License.txt ├── syne-family ├── readme.txt ├── syne.bold.otf ├── syne.extra.otf ├── syne.italic.otf ├── syne.mono.otf └── syne.regular.otf └── wind-sans-serif ├── readme.txt └── wind-sans-serif.regular.ttf /.config/Kvantum/Utterly-Nord-Solid/Nord.patchconfig: -------------------------------------------------------------------------------- 1 | # This patchconfig was used to build this Kvantum Theme using https://github.com/HimDek/Utterly-Round-Plasma-Style/tree/master/kvantum/Utterly-Round-Solid-Kvantum-Template 2 | 3 | #colors 4 | background=#2e3440 5 | foreground=#eceff4 6 | accent=#5e81ac 7 | negative=#bf616a 8 | button=#4c566a 9 | inactive=#d8dee9 10 | link=#81a1c1 11 | visitedlink=#8fbcbb 12 | 13 | #details 14 | name=Nord 15 | author="Himprakash Deka" 16 | comment="A solid dark nordic Kvantum theme with round borders for UI elements" 17 | -------------------------------------------------------------------------------- /.config/Kvantum/kvantum.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=Dracula-Solid 3 | -------------------------------------------------------------------------------- /.config/Kvantum/themes/Dracula.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=Dracula-Solid 3 | -------------------------------------------------------------------------------- /.config/Kvantum/themes/Everblush.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=Sweet-Mars -------------------------------------------------------------------------------- /.config/Kvantum/themes/Everforest.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=MateriaEverforestDark -------------------------------------------------------------------------------- /.config/Kvantum/themes/Gruv.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=Gruv-Solid 3 | -------------------------------------------------------------------------------- /.config/Kvantum/themes/Nord.kvconfig: -------------------------------------------------------------------------------- 1 | [General] 2 | theme=Utterly-Nord-Solid 3 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style1/waybar/colors/dracula.css: -------------------------------------------------------------------------------- 1 | @define-color background #20222B; 2 | @define-color on-background #f8f8f2; 3 | 4 | @define-color primary #BD93F9; 5 | @define-color on-primary #303240; 6 | 7 | @define-color secondary #98c3fa; 8 | @define-color on-secondary #f8f8f2; 9 | 10 | @define-color primary-container #282A36; 11 | @define-color on-primary-container #bd93f9; 12 | 13 | @define-color secondary-container #282A36; 14 | @define-color on-secondary-container #f8f8f2; 15 | 16 | @define-color workspace #BD93F9; 17 | @define-color workspace-active #f095ad; 18 | 19 | @define-color outline #858391; 20 | 21 | @define-color surface-variant #444654; 22 | @define-color on-surface-variant #f8f8f2; 23 | @define-color surface-tint #50FA7B; 24 | 25 | @define-color load #FFB86C; 26 | @define-color clock #ffca80; 27 | @define-color red #ff9580; 28 | @define-color cava #8BE9FD; 29 | @define-color network #a3f76a; 30 | @define-color updates #FF5555; 31 | @define-color playerctl-1 #ff79c6; 32 | @define-color playerctl-2 #bd93f9; 33 | @define-color upload #F1FA8C; 34 | @define-color download #50FA7B; -------------------------------------------------------------------------------- /.config/Waybar-Style/style1/waybar/colors/everblush.css: -------------------------------------------------------------------------------- 1 | @define-color background #141b1e; 2 | @define-color on-background #dadada; 3 | 4 | @define-color primary #e5c76b; 5 | @define-color on-primary #181d1f; 6 | 7 | @define-color secondary #e57474; 8 | @define-color on-secondary #141b1e; 9 | 10 | @define-color primary-container #232a2d; 11 | @define-color on-primary-container #8ccf7e; 12 | 13 | @define-color secondary-container #232a2d; 14 | @define-color on-secondary-container #dadada; 15 | 16 | @define-color workspace #67b0e8; 17 | @define-color workspace-active #e5c76b; 18 | 19 | @define-color outline #141b1e; 20 | 21 | @define-color surface-variant #373e41; 22 | @define-color on-surface-variant #dadada; 23 | @define-color surface-tint #8ccf7e; 24 | 25 | @define-color load #e57474; 26 | @define-color clock #6cbfbf; 27 | @define-color red #e57474; 28 | @define-color cava #b3b9b8; 29 | @define-color updates #c47fd5; 30 | @define-color network #dadada; 31 | @define-color playerctl-1 #e5c76b; 32 | @define-color playerctl-2 #67b0e8; 33 | @define-color upload #8ccf7e; 34 | @define-color download #c47fd5; -------------------------------------------------------------------------------- /.config/Waybar-Style/style1/waybar/colors/everforest.css: -------------------------------------------------------------------------------- 1 | @define-color background #1e2326; 2 | @define-color on-background #d3c6aa; 3 | 4 | @define-color primary #cbed95; 5 | @define-color on-primary #374145; 6 | 7 | @define-color secondary #e67e80; 8 | @define-color on-secondary #2b3339; 9 | 10 | @define-color primary-container #181C1E; 11 | @define-color on-primary-container #CBED95; 12 | 13 | @define-color secondary-container #181C1E; 14 | @define-color on-secondary-container #d3c6aa; 15 | 16 | @define-color workspace #7fbbb3; 17 | @define-color workspace-active #d699b6; 18 | 19 | @define-color outline #7a8478; 20 | 21 | @define-color surface-variant #4a575e; 22 | @define-color on-surface-variant #d3c6aa; 23 | @define-color surface-tint #cbed95; 24 | 25 | @define-color load #e67e80; 26 | @define-color clock #7fbbb3; 27 | @define-color red #e67e80; 28 | @define-color cava #d3c6aa; 29 | @define-color updates #d699b6; 30 | @define-color network #e67e80; 31 | @define-color playerctl-1 #dbbc7f; 32 | @define-color playerctl-2 #e69875; 33 | @define-color upload #a7c080; 34 | @define-color download #d699b6; 35 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style1/waybar/colors/gruv.css: -------------------------------------------------------------------------------- 1 | @define-color background #1d1d1d; 2 | @define-color on-background #fbf1c7; 3 | 4 | @define-color primary #b8bb26; 5 | @define-color on-primary #4d4040; 6 | 7 | @define-color secondary #ff6188; 8 | @define-color on-secondary #2d2a2e; 9 | 10 | @define-color primary-container #242421; 11 | @define-color on-primary-container #b8bb26; 12 | 13 | @define-color secondary-container #242421; 14 | @define-color on-secondary-container #fcfcfa; 15 | 16 | @define-color workspace #b8bb26; 17 | @define-color workspace-active #fe8019; 18 | 19 | @define-color outline #727072; 20 | 21 | @define-color surface-variant #645f66; 22 | @define-color on-surface-variant #fcfcfa; 23 | @define-color surface-tint #b8bb26; 24 | 25 | @define-color load #fb4934; 26 | @define-color clock #b8bb26; 27 | @define-color red #fb4934; 28 | @define-color cava #83a598; 29 | @define-color updates #fb4934; 30 | @define-color network #fbf1c7; 31 | @define-color playerctl-1 #ffd866; 32 | @define-color playerctl-2 #fc9867; 33 | @define-color upload #a7c080; 34 | @define-color download #d699b6; 35 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style1/waybar/colors/nord.css: -------------------------------------------------------------------------------- 1 | @define-color background #1f2229; 2 | @define-color on-background #eceff4; 3 | 4 | @define-color primary #88c0d0; 5 | @define-color on-primary #333945; 6 | 7 | @define-color secondary #81a1c1; 8 | @define-color on-secondary #2e3440; 9 | 10 | @define-color primary-container #292F3A; 11 | @define-color on-primary-container #88c0d0; 12 | 13 | @define-color secondary-container #292F3A; 14 | @define-color on-secondary-container #e5e9f0; 15 | 16 | @define-color workspace #88c0d0; 17 | @define-color workspace-active #a7c98f; 18 | 19 | @define-color outline #4c566a; 20 | 21 | @define-color surface-variant #3b4252; 22 | @define-color on-surface-variant #d8dee9; 23 | @define-color surface-tint #88c0d0; 24 | 25 | @define-color load #de8a92; 26 | @define-color clock #a0e0eb; 27 | @define-color red #bf616a; 28 | @define-color cava #8fbcbb; 29 | @define-color updates #d9ce91; 30 | @define-color network #c7d991; 31 | @define-color playerctl-1 #ebcb8b; 32 | @define-color playerctl-2 #d08770; 33 | @define-color upload #a7c080; 34 | @define-color download #d699b6; 35 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style2/waybar/colors/dracula.css: -------------------------------------------------------------------------------- 1 | @define-color bg #21232b; 2 | @define-color container #282A36; 3 | 4 | @define-color fg #f9f9f4; 5 | @define-color fg-1 #ffffff; 6 | @define-color fg-3 #666e73; 7 | 8 | @define-color arch #8BE9FD; 9 | @define-color memory #50c7f8; 10 | @define-color themes #FFB86C; 11 | @define-color weather #50FA7B; 12 | 13 | @define-color workspace #F8F8F2; 14 | @define-color workspace-active #F1FA8C; 15 | 16 | @define-color slider #383e47; 17 | @define-color slider-highlight #8BE9FD; 18 | @define-color calender #50FA7B; 19 | @define-color clock #d3baf7; 20 | @define-color power #FF5555; 21 | 22 | @define-color logout #f29dc8; 23 | @define-color reboot #f89d92; 24 | 25 | /* Currently not in used */ 26 | 27 | @define-color playerctl-1 #e2c992; 28 | @define-color playerctl-2 #eba98e; 29 | @define-color network #dcd1bb; 30 | @define-color updates #cdedad; -------------------------------------------------------------------------------- /.config/Waybar-Style/style2/waybar/colors/everblush.css: -------------------------------------------------------------------------------- 1 | @define-color bg #111617; 2 | @define-color container #1e2326; 3 | 4 | @define-color fg #dadada; 5 | @define-color fg-1 #ffffff; 6 | 7 | @define-color arch #5ddef5; 8 | @define-color memory #18b3f5; 9 | @define-color themes #c4e88b; 10 | @define-color weather #e497f7; 11 | 12 | @define-color workspace #b3b9b8; 13 | @define-color workspace-active #67b0e8; 14 | 15 | @define-color slider #3b392e; 16 | @define-color slider-highlight #e5c76b; 17 | @define-color calender #bfe386; 18 | @define-color clock #edafe2; 19 | @define-color power #d65a5a; 20 | 21 | @define-color logout #f29dc8; 22 | @define-color reboot #f89d92; -------------------------------------------------------------------------------- /.config/Waybar-Style/style2/waybar/colors/everforest.css: -------------------------------------------------------------------------------- 1 | @define-color bg #181C1E; 2 | @define-color container #1e2326; 3 | 4 | @define-color fg #f8f8f2; 5 | @define-color fg-1 #ffffff; 6 | 7 | @define-color arch #5ddef5; 8 | @define-color memory #18b3f5; 9 | @define-color themes #fcc383; 10 | @define-color weather #bfe386; 11 | 12 | @define-color workspace #596965; 13 | @define-color workspace-active #89ccc3; 14 | 15 | @define-color slider #343b39; 16 | @define-color slider-highlight #a7c080; 17 | @define-color calender #bfe386; 18 | @define-color clock #edafe2; 19 | @define-color power #d65a5a; 20 | 21 | @define-color logout #f29dc8; 22 | @define-color reboot #f89d92; -------------------------------------------------------------------------------- /.config/Waybar-Style/style2/waybar/colors/gruv.css: -------------------------------------------------------------------------------- 1 | 2 | @define-color bg #202020; 3 | @define-color container #242424; 4 | 5 | @define-color fg #ffffff; 6 | @define-color fg-1 #ffffff; 7 | 8 | @define-color arch #a1c9ba; 9 | @define-color memory #61b6ba; 10 | @define-color themes #f28019; 11 | @define-color weather #fabd2f; 12 | 13 | @define-color workspace #a89984; 14 | @define-color workspace-active #fbf1c7; 15 | 16 | @define-color slider #3b343a; 17 | @define-color slider-highlight #d3869b; 18 | @define-color calender #b8bb26; 19 | @define-color clock #61b6ba; 20 | @define-color power #fb4934; 21 | 22 | @define-color logout #f29dc8; 23 | @define-color reboot #f89d92; -------------------------------------------------------------------------------- /.config/Waybar-Style/style2/waybar/colors/nord.css: -------------------------------------------------------------------------------- 1 | @define-color bg #1d2129; 2 | @define-color container #2e3440; 3 | 4 | @define-color fg #d8dee9; 5 | @define-color fg-1 #ffffff; 6 | 7 | @define-color arch #a9cef5; 8 | @define-color memory #7ba3d4; 9 | @define-color themes #e0afd7; 10 | @define-color weather #c7eda8; 11 | 12 | @define-color workspace #596378; 13 | @define-color workspace-active #88c0d0; 14 | 15 | @define-color slider #393b34; 16 | @define-color slider-highlight #ebcb8b; 17 | @define-color calender #a4dedd; 18 | @define-color clock #c7eda8; 19 | @define-color power #ed7b86; 20 | 21 | @define-color logout #ebcb8b; 22 | @define-color reboot #e09c87; 23 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style3/waybar/colors/dracula.css: -------------------------------------------------------------------------------- 1 | @define-color background #1f2229; 2 | @define-color background2 #333845; 3 | 4 | @define-color foreground #ffffff; 5 | 6 | @define-color primary-container #ffffff; 7 | @define-color on-primary-container #000000; 8 | 9 | @define-color secondary-container #50FA7B; 10 | @define-color on-secondary-container #282A36; 11 | 12 | @define-color workspace #eceff4; 13 | @define-color workspace2 #b5bdbd; 14 | @define-color workspace-active #FFB86C; 15 | 16 | @define-color outline #4c566a; 17 | @define-color surface-variant #444654; 18 | 19 | @define-color general #dedad1; 20 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style3/waybar/colors/everblush.css: -------------------------------------------------------------------------------- 1 | @define-color background #1f2229; 2 | @define-color background2 #333845; 3 | 4 | @define-color foreground #ffffff; 5 | 6 | @define-color primary-container #384042; 7 | @define-color on-primary-container #dadada; 8 | 9 | @define-color secondary-container #e5c76b; 10 | @define-color on-secondary-container #141b1e; 11 | 12 | @define-color workspace #384042; 13 | @define-color workspace2 #232a2d; 14 | @define-color workspace-active #67b0e8; 15 | 16 | @define-color outline #b3b9b8; 17 | @define-color surface-variant #141b1e; 18 | 19 | @define-color general #ffffff; 20 | 21 | 22 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style3/waybar/colors/everforest.css: -------------------------------------------------------------------------------- 1 | @define-color background #1f2229; 2 | @define-color background2 #333845; 3 | 4 | @define-color foreground #dedad1; 5 | 6 | @define-color primary-container #495156; 7 | @define-color on-primary-container #dedad1; 8 | 9 | @define-color secondary-container #495156; 10 | @define-color on-secondary-container #dedad1; 11 | 12 | @define-color workspace #374145; 13 | @define-color workspace2 #495156; 14 | @define-color workspace-active #606a70; 15 | 16 | @define-color outline #dedad1; 17 | @define-color surface-variant #ffffff; 18 | 19 | @define-color general #dedad1; 20 | 21 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style3/waybar/colors/gruv.css: -------------------------------------------------------------------------------- 1 | @define-color background #3c3836; 2 | 3 | @define-color foreground #fbf1c7; 4 | 5 | @define-color primary-container #57534f; 6 | @define-color on-primary-container #fbf1c7; 7 | 8 | @define-color secondary-container #d3869b; 9 | @define-color on-secondary-container #000000; 10 | 11 | @define-color workspace #504945; 12 | @define-color workspace2 #665c54; 13 | @define-color workspace-active #b8bb26; 14 | 15 | @define-color outline #fbf1c7; 16 | @define-color surface-variant #444654; 17 | 18 | @define-color general #fbf1c7; 19 | 20 | -------------------------------------------------------------------------------- /.config/Waybar-Style/style3/waybar/colors/nord.css: -------------------------------------------------------------------------------- 1 | @define-color background #1f2229; 2 | @define-color background2 #333845; 3 | 4 | @define-color foreground #ffffff; 5 | 6 | @define-color primary-container #ffffff; 7 | @define-color on-primary-container #000000; 8 | 9 | @define-color secondary-container #5e81ac; 10 | @define-color on-secondary-container #ffffff; 11 | 12 | @define-color workspace #eceff4; 13 | @define-color workspace2 #b5bdbd; 14 | @define-color workspace-active #87939c; 15 | 16 | @define-color outline #4c566a; 17 | @define-color surface-variant #444654; 18 | 19 | @define-color load #de8a92; 20 | @define-color clock #000000; 21 | @define-color power #fcffff; 22 | @define-color cava #8fbcbb; 23 | @define-color updates #d9ce91; 24 | @define-color network #c7d991; 25 | 26 | -------------------------------------------------------------------------------- /.config/cava/shaders/bar_spectrum.frag: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | in vec2 fragCoord; 4 | out vec4 fragColor; 5 | 6 | // bar values. defaults to left channels first (low to high), then right (high to low). 7 | uniform float bars[512]; 8 | 9 | uniform int bars_count; // number of bars (left + right) (configurable) 10 | uniform int bar_width; // bar width (configurable), not used here 11 | uniform int bar_spacing; // space bewteen bars (configurable) 12 | 13 | uniform vec3 u_resolution; // window resolution 14 | 15 | //colors, configurable in cava config file (r,g,b) (0.0 - 1.0) 16 | uniform vec3 bg_color; // background color 17 | uniform vec3 fg_color; // foreground color 18 | 19 | uniform int gradient_count; 20 | uniform vec3 gradient_colors[8]; // gradient colors 21 | 22 | vec3 normalize_C(float y,vec3 col_1, vec3 col_2, float y_min, float y_max) 23 | { 24 | //create color based on fraction of this color and next color 25 | float yr = (y - y_min) / (y_max - y_min); 26 | return col_1 * (1.0 - yr) + col_2 * yr; 27 | } 28 | 29 | void main() 30 | { 31 | // find which bar to use based on where we are on the x axis 32 | float x = u_resolution.x * fragCoord.x; 33 | int bar = int(bars_count * fragCoord.x); 34 | 35 | //calculate a bar size 36 | float bar_size = u_resolution.x / bars_count; 37 | 38 | //the y coordinate and bar values are the same 39 | float y = bars[bar]; 40 | 41 | // make sure there is a thin line at bottom 42 | if (y * u_resolution.y < 1.0) 43 | { 44 | y = 1.0 / u_resolution.y; 45 | } 46 | 47 | //draw the bar up to current height 48 | if (y > fragCoord.y) 49 | { 50 | //make some space between bars basen on settings 51 | if (x > (bar + 1) * (bar_size) - bar_spacing) 52 | { 53 | fragColor = vec4(bg_color,1.0); 54 | } 55 | else 56 | { 57 | if (gradient_count == 0) 58 | { 59 | fragColor = vec4(fg_color,1.0); 60 | } 61 | else 62 | { 63 | //find which color in the configured gradient we are at 64 | int color = int((gradient_count - 1) * fragCoord.y); 65 | 66 | //find where on y this and next color is supposed to be 67 | float y_min = color / (gradient_count - 1.0); 68 | float y_max = (color + 1.0) / (gradient_count - 1.0); 69 | 70 | //make color 71 | fragColor = vec4(normalize_C(fragCoord.y, gradient_colors[color], gradient_colors[color + 1], y_min, y_max), 1.0); 72 | } 73 | } 74 | } 75 | else 76 | { 77 | fragColor = vec4(bg_color,1.0); 78 | } 79 | } -------------------------------------------------------------------------------- /.config/cava/shaders/northern_lights.frag: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | in vec2 fragCoord; 4 | out vec4 fragColor; 5 | 6 | // bar values. defaults to left channels first (low to high), then right (high to low). 7 | uniform float bars[512]; 8 | 9 | uniform int bars_count; // number of bars (left + right) (configurable) 10 | 11 | uniform vec3 u_resolution; // window resolution, not used here 12 | 13 | //colors, configurable in cava config file 14 | uniform vec3 bg_color; // background color(r,g,b) (0.0 - 1.0), not used here 15 | uniform vec3 fg_color; // foreground color, not used here 16 | 17 | void main() 18 | { 19 | // find which bar to use based on where we are on the x axis 20 | int bar = int(bars_count * fragCoord.x); 21 | 22 | float bar_y = 1.0 - abs((fragCoord.y - 0.5)) * 2.0; 23 | float y = (bars[bar]) * bar_y; 24 | 25 | float bar_x = (fragCoord.x - float(bar) / float(bars_count)) * bars_count; 26 | float bar_r = 1.0 - abs((bar_x - 0.5)) * 2; 27 | 28 | bar_r = bar_r * bar_r * 2; 29 | 30 | // set color 31 | fragColor.r = fg_color.x * y * bar_r; 32 | fragColor.g = fg_color.y * y * bar_r; 33 | fragColor.b = fg_color.z * y * bar_r; 34 | } 35 | -------------------------------------------------------------------------------- /.config/cava/shaders/pass_through.vert: -------------------------------------------------------------------------------- 1 | #version 330 2 | 3 | 4 | // Input vertex data, different for all executions of this shader. 5 | layout(location = 0) in vec3 vertexPosition_modelspace; 6 | 7 | // Output data ; will be interpolated for each fragment. 8 | out vec2 fragCoord; 9 | 10 | void main() 11 | { 12 | gl_Position = vec4(vertexPosition_modelspace,1); 13 | fragCoord = (vertexPosition_modelspace.xy+vec2(1,1))/2.0; 14 | } 15 | -------------------------------------------------------------------------------- /.config/code/user/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "window.menuBarVisibility": "toggle", 3 | "editor.scrollbar.vertical": "hidden", 4 | "editor.cursorBlinking": "smooth", 5 | "editor.cursorSmoothCaretAnimation": "on", 6 | "editor.scrollbar.verticalScrollbarSize": 0, 7 | "security.workspace.trust.untrustedFiles": "newWindow", 8 | "security.workspace.trust.startupPrompt": "never", 9 | "security.workspace.trust.enabled": false, 10 | "editor.fontFamily": "'Maple Mono', 'monospace', monospace", 11 | "extensions.autoUpdate": false, 12 | "workbench.statusBar.visible": false, 13 | "terminal.external.linuxExec": "kitty", 14 | "terminal.explorerKind": "both", 15 | "terminal.sourceControlRepositoriesKind": "both", 16 | "telemetry.telemetryLevel": "off", 17 | "workbench.iconTheme": "material-icon-theme", 18 | "editor.fontVariations": false, 19 | "editor.fontWeight": "normal", 20 | "editor.fontSize": 17, 21 | "editor.fontLigatures": false, 22 | "editor.minimap.side": "left", 23 | "workbench.colorTheme": "Everblush", 24 | } 25 | -------------------------------------------------------------------------------- /.config/dunst/icons/critical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 19 | 37 | 42 | 47 | 48 | -------------------------------------------------------------------------------- /.config/dunst/icons/vol/muted-mic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.config/dunst/icons/vol/muted-speaker.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.config/dunst/icons/vol/unmuted-mic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.config/dunst/icons/vol/unmuted-speaker.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.config/dunst/themes/dracula: -------------------------------------------------------------------------------- 1 | [Type-1] 2 | summary = "t1" 3 | format = "%a" 4 | background = "#282a36" 5 | foreground = "#f8f8f2" 6 | 7 | [Type-2] 8 | summary = "t2" 9 | format = "%a\n%b" 10 | background = "#44475a" 11 | foreground = "#f8f8f2" 12 | 13 | [urgency_low] 14 | background = "#282a36" 15 | foreground = "#6272a4" 16 | frame_color = "#bd93f9" 17 | highlight = "#50fa7b" 18 | timeout = 3 19 | 20 | [urgency_normal] 21 | background = "#282a36" 22 | foreground = "#f8f8f2" 23 | frame_color = "#bd93f9" 24 | highlight = "#50fa7b" 25 | timeout = 5 26 | 27 | [urgency_critical] 28 | background = "#282a36" 29 | foreground = "#ff5555" 30 | frame_color = "#ff79c6" 31 | highlight = "#50fa7b" 32 | timeout = 10 -------------------------------------------------------------------------------- /.config/dunst/themes/everblush: -------------------------------------------------------------------------------- 1 | [Type-1] 2 | summary = "t1" 3 | format = "%a" 4 | background = "#0e1214" 5 | foreground = "#b3b9b8" 6 | 7 | [Type-2] 8 | summary = "t2" 9 | format = "%a\n%b" 10 | background = "#141b1e" 11 | foreground = "#b3b9b8" 12 | 13 | [urgency_low] 14 | background = "#141b1e" 15 | foreground = "#dadada" 16 | frame_color = "#232a2d" 17 | highlight = "#8ccf7e" 18 | timeout = 3 19 | 20 | [urgency_normal] 21 | background = "#141b1e" 22 | foreground = "#dadada" 23 | frame_color = "#232a2d" 24 | highlight = "#8ccf7e" 25 | timeout = 5 26 | 27 | [urgency_critical] 28 | background = "#141b1e" 29 | foreground = "#e57474" 30 | frame_color = "#232a2d" 31 | highlight = "#8ccf7e" 32 | timeout = 10 33 | -------------------------------------------------------------------------------- /.config/dunst/themes/everforest: -------------------------------------------------------------------------------- 1 | [Type-1] 2 | summary = "t1" 3 | format = "%a" 4 | background = "#1e2326" 5 | foreground = "#859289" 6 | 7 | [Type-2] 8 | summary = "t2" 9 | format = "%a\n%b" 10 | background = "#232a2e" 11 | foreground = "#859289" 12 | 13 | [urgency_low] 14 | background = "#2b3339" 15 | foreground = "#d3c6aa" 16 | frame_color = "#7a8478" 17 | highlight = "#83c092" 18 | timeout = 3 19 | 20 | [urgency_normal] 21 | background = "#2b3339" 22 | foreground = "#d3c6aa" 23 | frame_color = "#7a8478" 24 | highlight = "#83c092" 25 | timeout = 5 26 | 27 | [urgency_critical] 28 | background = "#2b3339" 29 | foreground = "#e67e80" 30 | frame_color = "#7a8478" 31 | highlight = "#83c092" 32 | timeout = 10 -------------------------------------------------------------------------------- /.config/dunst/themes/gruv: -------------------------------------------------------------------------------- 1 | [Type-1] 2 | summary = "t1" 3 | format = "%a" 4 | background = "1a1616" 5 | foreground = "#9c98a3" 6 | 7 | [Type-2] 8 | summary = "t2" 9 | format = "%a\n%b" 10 | background = "#222124" 11 | foreground = "#9c98a3" 12 | 13 | [urgency_low] 14 | background = "#282828" 15 | foreground = "#ebdbb2" 16 | frame_color = "#928374" 17 | highlight = "#8ec07c" 18 | timeout = 3 19 | 20 | [urgency_normal] 21 | background = "#282828" 22 | foreground = "#ebdbb2" 23 | frame_color = "#928374" 24 | highlight = "#8ec07c" 25 | timeout = 5 26 | 27 | [urgency_critical] 28 | background = "#282828" 29 | foreground = "#fb4934" 30 | frame_color = "#928374" 31 | highlight = "#8ec07c" 32 | timeout = 10 33 | -------------------------------------------------------------------------------- /.config/dunst/themes/nord: -------------------------------------------------------------------------------- 1 | [Type-1] 2 | summary = "t1" 3 | format = "%a" 4 | background = "#2e3440" 5 | foreground = "#d8dee9" 6 | 7 | [Type-2] 8 | summary = "t2" 9 | format = "%a\n%b" 10 | background = "#3b4252" 11 | foreground = "#d8dee9" 12 | 13 | [urgency_low] 14 | background = "#2e3440" 15 | foreground = "#81a1c1" 16 | frame_color = "#5e81ac" 17 | highlight = "#a3be8c" 18 | timeout = 3 19 | 20 | [urgency_normal] 21 | background = "#2e3440" 22 | foreground = "#d8dee9" 23 | frame_color = "#5e81ac" 24 | highlight = "#a3be8c" 25 | timeout = 5 26 | 27 | [urgency_critical] 28 | background = "#2e3440" 29 | foreground = "#bf616a" 30 | frame_color = "#b48ead" 31 | highlight = "#a3be8c" 32 | timeout = 10 -------------------------------------------------------------------------------- /.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-theme-name=Everblush 3 | gtk-icon-theme-name=BeautyDream 4 | gtk-font-name=IBM Plex Sans Medium 10 5 | gtk-cursor-theme-name=Bibata-Modern-Ice 6 | gtk-cursor-theme-size=20 7 | gtk-toolbar-style=GTK_TOOLBAR_ICONS 8 | gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR 9 | gtk-button-images=0 10 | gtk-menu-images=0 11 | gtk-enable-event-sounds=1 12 | gtk-enable-input-feedback-sounds=0 13 | gtk-xft-antialias=1 14 | gtk-xft-hinting=1 15 | gtk-xft-hintstyle=hintfull 16 | gtk-xft-rgba=rgb 17 | gtk-application-prefer-dark-theme=1 18 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/checkbox-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 37 | 40 | 41 | 44 | 45 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/checkbox-checked-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 37 | 40 | 41 | 45 | 46 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/checkbox-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 37 | 40 | 41 | 49 | 50 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/checkbox-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 37 | 40 | 41 | 50 | 51 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 34 | 38 | 39 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/cursor-handle-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 34 | 38 | 39 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 34 | 43 | 44 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/radio-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 36 | 39 | 40 | 45 | 46 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/radio-checked-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 36 | 39 | 40 | 45 | 46 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | checkbox-mixed-symbolic.svg -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/radio-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | checkbox-mixed-symbolic@2.svg -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-horz-marks-after-slider-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 15 | 33 | 35 | 37 | 41 | 42 | 48 | 49 | 53 | 54 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-horz-marks-before-slider-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 32 | 34 | 38 | 42 | 43 | 44 | 47 | 48 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-slider-hover-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 33 | 35 | 41 | 42 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-slider-hover-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 33 | 35 | 41 | 42 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-slider-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 33 | 35 | 40 | 41 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-slider-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 33 | 35 | 41 | 42 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-vert-marks-after-slider-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 15 | 33 | 35 | 37 | 41 | 42 | 47 | 48 | 52 | 53 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/scale-vert-marks-before-slider-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 15 | 33 | 35 | 37 | 41 | 42 | 50 | 51 | 55 | 56 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-checkbox-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 37 | 40 | 41 | 45 | 46 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-checkbox-checked-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 37 | 40 | 41 | 46 | 47 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-checkbox-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 36 | 39 | 40 | 49 | 50 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-checkbox-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 36 | 39 | 40 | 49 | 50 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-radio-checked-symbolic.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 36 | 41 | 42 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-radio-checked-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 36 | 41 | 42 | -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-radio-mixed-symbolic.svg: -------------------------------------------------------------------------------- 1 | small-checkbox-mixed-symbolic.svg -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/small-radio-mixed-symbolic@2.svg: -------------------------------------------------------------------------------- 1 | small-checkbox-mixed-symbolic@2.svg -------------------------------------------------------------------------------- /.config/gtk-4.0/assets/unmaximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 37 | 41 | 46 | 47 | -------------------------------------------------------------------------------- /.config/gtk-4.0/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/gtk-4.0/thumbnail.png -------------------------------------------------------------------------------- /.config/hypr/hyprlock-themes/dracula.conf: -------------------------------------------------------------------------------- 1 | 2 | # BACKGROUND 3 | background { 4 | monitor = 5 | path = $HOME/.config/swww/dracula/planet001.png 6 | blur_passes = 2 7 | contrast = 0.9 8 | brightness = 0.5 9 | vibrancy = 0.17 10 | vibrancy_darkness = 0 11 | } 12 | 13 | # GENERAL 14 | general { 15 | no_fade_in = true 16 | no_fade_out = true 17 | hide_cursor = false 18 | grace = 0 19 | disable_loading_bar = true 20 | } 21 | 22 | # INPUT FIELD 23 | input-field { 24 | monitor = 25 | size = 300, 40 26 | outline_thickness = 2 27 | dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8 28 | dots_spacing = 0.2 # Scale of dots' absolute size, 0.0 - 1.0 29 | dots_center = true 30 | outer_color = rgba(0, 0, 0, 0) 31 | inner_color = rgba(53, 52, 77, 0.5) 32 | font_color = rgb(200, 200, 200) 33 | fade_on_empty = false 34 | font_family = syne 35 | placeholder_text = 36 | hide_input = false 37 | position = 0, -200 38 | halign = center 39 | valign = center 40 | } 41 | 42 | # Hour-Time 43 | label { 44 | monitor = 45 | text = cmd[update:1000] echo -e "$(date +"%H")" 46 | color = rgba(146, 140, 255, 1) 47 | font_family = JetBrainsMono Nerd Font Bold 48 | font_size = 180 49 | position = 0, 300 50 | halign = center 51 | valign = center 52 | } 53 | 54 | # Minute-Time 55 | label { 56 | monitor = 57 | text = cmd[update:1000] echo -e "$(date +"%M")" 58 | color = rgba(255, 255, 255, 1) 59 | font_family = JetBrainsMono Nerd Font Bold 60 | font_size = 180 61 | position = 0, 75 62 | halign = center 63 | valign = center 64 | } 65 | 66 | # Day-Date-Month 67 | label { 68 | monitor = 69 | text = cmd[update:1000] echo "$(date '+%A, ')$(date '+%d %B')" 70 | font_size = 30 71 | font_family = Johanvaaler 72 | position = 0, -80 73 | halign = center 74 | valign = center 75 | } 76 | 77 | 78 | # CURRENT SONG 79 | label { 80 | monitor = 81 | text = cmd[update:1000] echo "$(~/.config/hypr/scripts/songdetail.sh)" 82 | color = rgba(255, 255, 255, 1) 83 | font_size = 17 84 | font_family = History Yenifer 85 | position = 0, 200 86 | halign = center 87 | valign = bottom 88 | } 89 | -------------------------------------------------------------------------------- /.config/hypr/hyprlock-themes/everblush.conf: -------------------------------------------------------------------------------- 1 | 2 | # BACKGROUND 3 | background { 4 | monitor = 5 | path = $HOME/.config/swww/everblush/birdseye.jpg 6 | blur_passes = 1 7 | contrast = 0.9 8 | brightness = 0.5 9 | vibrancy = 0.17 10 | vibrancy_darkness = 0 11 | } 12 | 13 | # GENERAL 14 | general { 15 | no_fade_in = true 16 | no_fade_out = true 17 | hide_cursor = false 18 | grace = 0 19 | disable_loading_bar = true 20 | } 21 | 22 | # INPUT FIELD 23 | input-field { 24 | monitor = 25 | size = 300, 40 26 | outline_thickness = 1 27 | dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8 28 | dots_spacing = 0.2 # Scale of dots' absolute size, 0.0 - 1.0 29 | dots_center = true 30 | outer_color = rgba(20, 27, 30, 1) 31 | inner_color = rgba(35, 42, 45, 0.7) 32 | font_color = rgb(251, 255, 250) 33 | fade_on_empty = false 34 | font_family = History Yenifer 35 | placeholder_text = Insert magic spell here 36 | hide_input = false 37 | position = 0, -200 38 | halign = center 39 | valign = center 40 | } 41 | 42 | # Hour-Time 43 | label { 44 | monitor = 45 | text = cmd[update:1000] echo -e "$(date +"%H")" 46 | color = rgba(229, 199, 107, 1) 47 | font_family = JetBrainsMono Nerd Font Bold 48 | font_size = 180 49 | position = 0, 300 50 | halign = center 51 | valign = center 52 | } 53 | 54 | # Minute-Time 55 | label { 56 | monitor = 57 | text = cmd[update:1000] echo -e "$(date +"%M")" 58 | color = rgba(218, 218, 218, 1) 59 | font_family = JetBrainsMono Nerd Font Bold 60 | font_size = 180 61 | position = 0, 75 62 | halign = center 63 | valign = center 64 | } 65 | 66 | # Day-Date-Month 67 | label { 68 | monitor = 69 | text = cmd[update:1000] echo "$(date '+%A, ')$(date '+%d %B')" 70 | font_size = 30 71 | font_family = Johanvaaler 72 | position = 0, -80 73 | halign = center 74 | valign = center 75 | } 76 | 77 | 78 | # CURRENT SONG 79 | label { 80 | monitor = 81 | text = cmd[update:1000] echo "$(~/.config/hypr/scripts/songdetail.sh)" 82 | color = rgb(243, 255, 236) 83 | font_size = 17 84 | font_family = History Yenifer 85 | position = 0, 200 86 | halign = center 87 | valign = bottom 88 | } 89 | -------------------------------------------------------------------------------- /.config/hypr/hyprlock-themes/everforest.conf: -------------------------------------------------------------------------------- 1 | 2 | # BACKGROUND 3 | background { 4 | monitor = 5 | path = $HOME/.config/swww/everforest/hintergrund.png 6 | blur_passes = 1 7 | contrast = 0.9 8 | brightness = 0.5 9 | vibrancy = 0.17 10 | vibrancy_darkness = 0 11 | } 12 | 13 | # GENERAL 14 | general { 15 | no_fade_in = true 16 | no_fade_out = true 17 | hide_cursor = false 18 | grace = 0 19 | disable_loading_bar = true 20 | } 21 | 22 | # INPUT FIELD 23 | input-field { 24 | monitor = 25 | size = 300, 40 26 | outline_thickness = 2 27 | dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8 28 | dots_spacing = 0.2 # Scale of dots' absolute size, 0.0 - 1.0 29 | dots_center = true 30 | outer_color = rgba(0, 0, 0, 0) 31 | inner_color = rgba(71, 82, 88, 0.5) 32 | font_color = rgb(200, 200, 200) 33 | fade_on_empty = false 34 | font_family = syne 35 | placeholder_text = 36 | hide_input = false 37 | position = 0, -200 38 | halign = center 39 | valign = center 40 | } 41 | 42 | # Hour-Time 43 | label { 44 | monitor = 45 | text = cmd[update:1000] echo -e "$(date +"%H")" 46 | color = rgba(214, 153, 182, 1) 47 | font_family = JetBrainsMono Nerd Font Bold 48 | font_size = 180 49 | position = 0, 300 50 | halign = center 51 | valign = center 52 | } 53 | 54 | # Minute-Time 55 | label { 56 | monitor = 57 | text = cmd[update:1000] echo -e "$(date +"%M")" 58 | color = rgba(255, 255, 255, 1) 59 | font_family = JetBrainsMono Nerd Font Bold 60 | font_size = 180 61 | position = 0, 75 62 | halign = center 63 | valign = center 64 | } 65 | 66 | # Day-Date-Month 67 | label { 68 | monitor = 69 | text = cmd[update:1000] echo "$(date '+%A, ')$(date '+%d %B')" 70 | font_size = 30 71 | font_family = Johanvaaler 72 | position = 0, -80 73 | halign = center 74 | valign = center 75 | } 76 | 77 | 78 | # CURRENT SONG 79 | label { 80 | monitor = 81 | text = cmd[update:1000] echo "$(~/.config/hypr/scripts/songdetail.sh)" 82 | color = rgba(255, 255, 255, 1) 83 | font_size = 17 84 | font_family = History Yenifer 85 | position = 0, 200 86 | halign = center 87 | valign = bottom 88 | } 89 | -------------------------------------------------------------------------------- /.config/hypr/hyprlock-themes/gruv.conf: -------------------------------------------------------------------------------- 1 | 2 | # BACKGROUND 3 | background { 4 | monitor = 5 | path = $HOME/.config/swww/gruv/satellite.jpg 6 | blur_passes = 1 7 | contrast = 0.8916 8 | brightness = 0.4 9 | vibrancy = 0.1696 10 | vibrancy_darkness = 1 11 | } 12 | 13 | # GENERAL 14 | general { 15 | no_fade_in = true 16 | no_fade_out = true 17 | hide_cursor = false 18 | grace = 0 19 | disable_loading_bar = true 20 | } 21 | 22 | # INPUT FIELD 23 | input-field { 24 | monitor = 25 | size = 300, 40 26 | outline_thickness = 2 27 | dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8 28 | dots_spacing = 0.2 # Scale of dots' absolute size, 0.0 - 1.0 29 | dots_center = true 30 | outer_color = rgba(0, 0, 0, 0) 31 | inner_color = rgba(124, 111, 100, 0.2) 32 | font_color = rgb(200, 200, 200) 33 | fade_on_empty = false 34 | font_family = syne 35 | placeholder_text = 36 | hide_input = false 37 | position = 0, -200 38 | halign = center 39 | valign = center 40 | } 41 | 42 | # Hour-Time 43 | label { 44 | monitor = 45 | text = cmd[update:1000] echo -e "$(date +"%I")" 46 | color = rgba(215, 153, 33, 1) 47 | font_family = JetBrainsMono Nerd Font Bold 48 | font_size = 180 49 | position = 0, 300 50 | halign = center 51 | valign = center 52 | } 53 | 54 | # Minute-Time 55 | label { 56 | monitor = 57 | text = cmd[update:1000] echo -e "$(date +"%M")" 58 | color = rgba(255, 255, 255, 1) 59 | font_family = JetBrainsMono Nerd Font Bold 60 | font_size = 180 61 | position = 0, 75 62 | halign = center 63 | valign = center 64 | } 65 | 66 | # Day-Date-Month 67 | label { 68 | monitor = 69 | text = cmd[update:1000] echo "$(date '+%A, ')$(date '+%d %B')" 70 | font_size = 30 71 | font_family = Johanvaaler 72 | position = 0, -80 73 | halign = center 74 | valign = center 75 | } 76 | 77 | 78 | # CURRENT SONG 79 | label { 80 | monitor = 81 | text = cmd[update:1000] echo "$(~/.config/hypr/scripts/songdetail.sh)" 82 | color = rgba(255, 255, 255, 1) 83 | font_size = 17 84 | font_family = History Yenifer 85 | position = 0, 200 86 | halign = center 87 | valign = bottom 88 | } 89 | -------------------------------------------------------------------------------- /.config/hypr/hyprlock-themes/nord.conf: -------------------------------------------------------------------------------- 1 | 2 | # BACKGROUND 3 | background { 4 | monitor = 5 | path = $HOME/.config/swww/nord/mist_forest_nord.jpg 6 | blur_passes = 1 7 | contrast = 0.9 8 | brightness = 0.5 9 | vibrancy = 0.17 10 | vibrancy_darkness = 0 11 | } 12 | 13 | # GENERAL 14 | general { 15 | no_fade_in = true 16 | no_fade_out = true 17 | hide_cursor = false 18 | grace = 0 19 | disable_loading_bar = true 20 | } 21 | 22 | # INPUT FIELD 23 | input-field { 24 | monitor = 25 | size = 300, 40 26 | outline_thickness = 2 27 | dots_size = 0.2 # Scale of input-field height, 0.2 - 0.8 28 | dots_spacing = 0.2 # Scale of dots' absolute size, 0.0 - 1.0 29 | dots_center = true 30 | outer_color = rgba(0, 0, 0, 0) 31 | inner_color = rgba(76, 86, 106, 0.5) 32 | font_color = rgb(200, 200, 200) 33 | fade_on_empty = false 34 | font_family = syne 35 | placeholder_text = 36 | hide_input = false 37 | position = 0, -200 38 | halign = center 39 | valign = center 40 | } 41 | 42 | # Hour-Time 43 | label { 44 | monitor = 45 | text = cmd[update:1000] echo -e "$(date +"%H")" 46 | color = rgba(140, 228, 255, 1) 47 | font_family = JetBrainsMono Nerd Font Bold 48 | font_size = 180 49 | position = 0, 300 50 | halign = center 51 | valign = center 52 | } 53 | 54 | # Minute-Time 55 | label { 56 | monitor = 57 | text = cmd[update:1000] echo -e "$(date +"%M")" 58 | color = rgba(255, 255, 255, 1) 59 | font_family = JetBrainsMono Nerd Font Bold 60 | font_size = 180 61 | position = 0, 75 62 | halign = center 63 | valign = center 64 | } 65 | 66 | # Day-Date-Month 67 | label { 68 | monitor = 69 | text = cmd[update:1000] echo "$(date '+%A, ')$(date '+%d %B')" 70 | font_size = 30 71 | font_family = Johanvaaler 72 | position = 0, -80 73 | halign = center 74 | valign = center 75 | } 76 | 77 | 78 | # CURRENT SONG 79 | label { 80 | monitor = 81 | text = cmd[update:1000] echo "$(~/.config/hypr/scripts/songdetail.sh)" 82 | color = rgba(255, 255, 255, 1) 83 | font_size = 17 84 | font_family = History Yenifer 85 | position = 0, 200 86 | halign = center 87 | valign = bottom 88 | } 89 | -------------------------------------------------------------------------------- /.config/hypr/hyprshade.toml: -------------------------------------------------------------------------------- 1 | [[shades]] 2 | name = "vibrance" 3 | default = true # shader to use during times when there is no other shader scheduled 4 | 5 | # [[shades]] 6 | # name = "redshift" 7 | # start_time = 19:00:00 8 | # end_time = 06:00:00 # optional if you have more than one shade with start_time 9 | -------------------------------------------------------------------------------- /.config/hypr/scripts/cava.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | # Check if a Cava process is running 4 | cava_running=$(pgrep -x cava | wc -l) 5 | 6 | if [ "$cava_running" = "0" ]; then 7 | echo "Cava server not found" > /dev/null 2>&1 8 | elif [ "$cava_running" = "1" ]; then 9 | killall cava 10 | fi 11 | 12 | # Define the bar characters for visual representation 13 | bar="▁▂▃▄▅▆▇█" 14 | dict="s/;//g;" 15 | 16 | # Create a mapping dictionary to replace numbers with bar characters 17 | i=0 18 | while [ $i -lt ${#bar} ] 19 | do 20 | dict="${dict}s/$i/${bar:$i:1}/g;" 21 | i=$((i+1)) 22 | done 23 | 24 | # Ensure the pipe file does not already exist 25 | pipe="/tmp/cava.fifo" 26 | if [ -p "$pipe" ]; then 27 | unlink "$pipe" # Remove existing pipe 28 | fi 29 | mkfifo "$pipe" # Create a new named pipe 30 | 31 | # Generate a temporary Cava configuration file 32 | config_file="/tmp/waybar_cava_config" 33 | echo " 34 | [general] 35 | bars = 20 36 | [output] 37 | method = raw 38 | raw_target = $pipe 39 | noise_reduction = 0.7 40 | data_format = ascii 41 | ascii_max_range = 7 42 | " > "$config_file" 43 | 44 | # Start Cava with the generated config in the background 45 | cava -p "$config_file" & 46 | 47 | # Read data from the pipe and replace numbers with corresponding bar characters 48 | while read -r cmd; do 49 | echo "$cmd" | sed "$dict" 50 | done < "$pipe" 51 | -------------------------------------------------------------------------------- /.config/hypr/scripts/cpuinfo.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # CPU model 4 | model=$(lscpu | awk -F ':' '/Model name/ {sub(/^ *| *$/,"",$2); print $2}' | awk '{NF-=3}1') 5 | 6 | # CPU utilization 7 | utilization=$(top -bn1 | awk '/^%Cpu/ {print 100 - $8}') 8 | 9 | # Clock speed 10 | freqlist=$(cat /proc/cpuinfo | grep "cpu MHz" | awk '{ print $4 }') 11 | maxfreq=$(lscpu | grep "CPU max MHz" | awk -F: '{ print $2}' | sed -e 's/ //g' -e 's/\.[0-9]*//g') 12 | frequency=$(echo $freqlist | tr ' ' '\n' | awk "{ sum+=\$1 } END {printf \"%.0f/$maxfreq MHz\", sum/NR}") 13 | 14 | # CPU temp 15 | temp=$(sensors | awk '/Package id 0/ {print $4}' | awk -F '[+.]' '{print $2}') 16 | if [ -z "$temp" ]; then 17 | temp=$(sensors | awk '/Tctl/ {print $2}' | tr -d '+°C') 18 | fi 19 | if [ -z "$temp" ]; then 20 | temp="N/A" 21 | fi 22 | 23 | # map icons 24 | set_ico="{\"thermo\":{\"0\":\"\",\"45\":\"\",\"65\":\"\",\"85\":\"\"},\"emoji\":{\"0\":\"❄\",\"45\":\"☁\",\"65\":\"\",\"85\":\"\"},\"util\":{\"0\":\"󰾆\",\"30\":\"󰾅\",\"60\":\"󰓅\",\"90\":\"\"}}" 25 | eval_ico() { 26 | map_ico=$(echo "${set_ico}" | jq -r --arg aky "$1" --argjson avl "$2" '.[$aky] | keys_unsorted | map(tonumber) | map(select(. <= $avl)) | max') 27 | echo "${set_ico}" | jq -r --arg aky "$1" --arg avl "$map_ico" '.[$aky] | .[$avl]' 28 | } 29 | 30 | thermo=$(eval_ico thermo $temp) 31 | emoji=$(eval_ico emoji $temp) 32 | speedo=$(eval_ico util $utilization) 33 | 34 | # Print cpu info (json) 35 | echo "{\"text\":\"${thermo} ${temp}°C\", \"tooltip\":\"${model}\n${thermo} Temperature: ${temp}°C ${emoji}\n${speedo} Utilization: ${utilization}%\n Clock Speed: ${frequency}\"}" 36 | -------------------------------------------------------------------------------- /.config/hypr/scripts/logoutlaunch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Check if wlogout is already running 4 | if pgrep -x "wlogout" > /dev/null; then 5 | pkill -x "wlogout" 6 | exit 0 7 | fi 8 | 9 | # Set file variables 10 | ScrDir=$(dirname "$(realpath "$0")") 11 | wLayout="${XDG_CONFIG_HOME:-$HOME/.config}/wlogout/layout" 12 | wlTmplt="${XDG_CONFIG_HOME:-$HOME/.config}/wlogout/style.css" 13 | 14 | if [ ! -f "$wLayout" ] || [ ! -f "$wlTmplt" ]; then 15 | echo "ERROR: Config files not found..." 16 | exit 1 17 | fi 18 | 19 | # Define static values for layout based on 1920x1080 resolution 20 | wlColms=6 # Number of columns in wlogout 21 | export mgn=280 # Adjusted margin for 1080p 22 | export hvr=240 # Adjusted hover effect size for 1080p 23 | export fntSize=20 # Adjusted font size for 1080p 24 | 25 | # Set default colors (can be customized manually) 26 | export WindBg="rgba(0,0,0,0.5)" 27 | 28 | # Define static border radius values 29 | export active_rad=15 # Adjusted border radius for 1080p 30 | export button_rad=20 # Adjusted button border radius for 1080p 31 | 32 | # Apply style template 33 | wlStyle=$(envsubst < "$wlTmplt") 34 | 35 | # Launch wlogout 36 | wlogout -b "$wlColms" -c 0 -r 0 -m 0 --layout "$wLayout" --css <(echo "$wlStyle") --protocol layer-shell -------------------------------------------------------------------------------- /.config/hypr/scripts/resetxdgportal.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sleep 1 3 | killall xdg-desktop-portal-hyprland 4 | killall xdg-desktop-portal-gnome 5 | killall xdg-desktop-portal-kde 6 | killall xdg-desktop-portal-lxqt 7 | killall xdg-desktop-portal-wlr 8 | killall xdg-desktop-portal 9 | sleep 1 10 | /usr/lib/xdg-desktop-portal-hyprland & 11 | sleep 2 12 | /usr/lib/xdg-desktop-portal & 13 | -------------------------------------------------------------------------------- /.config/hypr/scripts/rofilaunch.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ScrDir=`dirname "$(realpath "$0")"` 4 | source $ScrDir/themectl.sh 5 | roconf="~/.config/rofi/config.rasi" 6 | 7 | 8 | # rofi action 9 | 10 | case $1 in 11 | d) r_mode="drun" ;; 12 | w) r_mode="window" ;; 13 | f) r_mode="filebrowser" ;; 14 | h) echo -e "rofilaunch.sh [action]\nwhere action," 15 | echo "d : drun mode" 16 | echo "w : window mode" 17 | echo "f : filebrowser mode," 18 | exit 0 ;; 19 | *) r_mode="drun" ;; 20 | esac 21 | 22 | 23 | # read hypr theme border 24 | 25 | #wind_border=$(( hypr_border * 3 )) 26 | #elem_border=`[ $hypr_border -eq 0 ] && echo "10" || echo $(( hypr_border * 2 ))` 27 | #r_override="window {border: ${hypr_width}px; border-radius: ${wind_border}px;} element {border-radius: ${elem_border}px;}" 28 | 29 | 30 | # read hypr font size 31 | 32 | fnt_override=`gsettings get org.gnome.desktop.interface font-name | awk '{gsub(/'\''/,""); print $NF}'` 33 | fnt_override="configuration {font: \"IBM Plex Sans Medium ${fnt_override}\";}" 34 | 35 | 36 | # read hypr theme icon 37 | 38 | icon_override=`gsettings get org.gnome.desktop.interface icon-theme | sed "s/'//g"` 39 | icon_override="configuration {icon-theme: \"${icon_override}\";}" 40 | 41 | 42 | # launch rofi 43 | 44 | rofi -show $r_mode -theme-str "${fnt_override}" -theme-str "${r_override}" -theme-str "${icon_override}" -config "${roconf}" 45 | 46 | -------------------------------------------------------------------------------- /.config/hypr/scripts/rofiselect.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # set variables 4 | ScrDir=`dirname "$(realpath "$0")"` 5 | source $ScrDir/themectl.sh 6 | 7 | RofiConf="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/themeselect.rasi" 8 | RofiStyle="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/styles" 9 | RofiAssets="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/assets" 10 | Rofilaunch="${XDG_CONFIG_HOME:-$HOME/.config}/rofi/config.rasi" 11 | 12 | 13 | # scale for monitor x res 14 | x_monres=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .width') 15 | monitor_scale=$(hyprctl -j monitors | jq '.[] | select (.focused == true) | .scale' | sed 's/\.//') 16 | x_monres=$(( x_monres * 18 / monitor_scale )) 17 | 18 | 19 | # set rofi override 20 | elem_border=$(( hypr_border * 5 )) 21 | icon_border=$(( elem_border - 5 )) 22 | r_override="listview{columns:4;} element{orientation:vertical;border-radius:${elem_border}px;} element-icon{border-radius:${icon_border}px;size:${x_monres}px;} element-text{enabled:false;}" 23 | 24 | 25 | # launch rofi menu 26 | RofiSel=$( ls ${RofiStyle}/style_*.rasi | awk -F '/' '{print $NF}' | cut -d '.' -f 1 | while read rstyle 27 | do 28 | echo -en "$rstyle\x00icon\x1f${RofiAssets}/${rstyle}.png\n" 29 | done | rofi -dmenu -theme-str "${r_override}" -config $RofiConf) 30 | 31 | 32 | # apply rofi style 33 | if [ ! -z $RofiSel ] ; then 34 | cp "${RofiStyle}/${RofiSel}.rasi" "${Rofilaunch}" 35 | dunstify "t1" -a " ${RofiSel} applied..." -i "$RofiAssets/$RofiSel.png" -r 91190 -t 2200 36 | fi 37 | 38 | -------------------------------------------------------------------------------- /.config/hypr/scripts/shaders.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | Redshift="$HOME/.config/hypr/shaders/redshift.glsl" 4 | Vibrance="$HOME/.config/hypr/shaders/vibrance-custom.glsl" 5 | STATE_FILE="/tmp/shader_state" 6 | 7 | output_json() { 8 | local text=$1 9 | local class=$2 10 | local percentage=$3 11 | echo "{\"text\": \"$text\", \"class\": \"$class\", \"percentage\": $percentage}" 12 | } 13 | 14 | update_state() { 15 | echo "$1" > "$STATE_FILE" 16 | } 17 | 18 | get_state() { 19 | if [ -f "$STATE_FILE" ]; then 20 | cat "$STATE_FILE" 21 | else 22 | echo "off" 23 | fi 24 | } 25 | 26 | case $1 in 27 | r) 28 | hyprshade on "$Redshift" 29 | output_json "100" "redshift" 100 30 | update_state "redshift" 31 | ;; 32 | v) 33 | hyprshade on "$Vibrance" 34 | output_json "50" "vibrance" 50 35 | update_state "vibrance" 36 | ;; 37 | off) 38 | hyprshade off 39 | output_json "50" "default" 0 40 | update_state "off" 41 | ;; 42 | *) 43 | current_state=$(get_state) 44 | case $current_state in 45 | "redshift") 46 | output_json "100" "redshift" 100 47 | ;; 48 | "vibrance") 49 | output_json "50" "vibrance" 50 50 | ;; 51 | *) 52 | output_json "50" "default" 0 53 | ;; 54 | esac 55 | ;; 56 | esac -------------------------------------------------------------------------------- /.config/hypr/scripts/songdetail.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | song_info=$(playerctl metadata --format '{{title}} | {{artist}}') 4 | 5 | echo "$song_info" 6 | -------------------------------------------------------------------------------- /.config/hypr/scripts/switch3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Importing wallpaper script 4 | SWWW_SCRIPT="${XDG_CONFIG_HOME:-$HOME/.config}/hypr/scripts/swwwallpaper.sh" 5 | 6 | # Define wallpaper directories for each theme 7 | WALLPAPER_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/swww" 8 | DRACULA_DIR="$WALLPAPER_DIR/dracula" 9 | GRUV_DIR="$WALLPAPER_DIR/gruv" 10 | NORD_DIR="$WALLPAPER_DIR/nord" 11 | EVERFOREST_DIR="$WALLPAPER_DIR/everforest" 12 | EVERBLUSH_DIR="$WALLPAPER_DIR/everblush" 13 | 14 | # Function to change wallpaper directory and set a wallpaper 15 | change_wallpaper_theme() { 16 | local theme_dir="$1" 17 | 18 | if [ ! -d "$theme_dir" ]; then 19 | echo "Error: Wallpaper directory $theme_dir not found." 20 | exit 1 21 | fi 22 | 23 | # Get the first wallpaper in the directory 24 | local wallpaper=$(find "$theme_dir" -type f \( -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" -o -name "*.gif" \) | head -n 1) 25 | 26 | if [ -z "$wallpaper" ]; then 27 | echo "Error: No wallpapers found in $theme_dir" 28 | exit 1 29 | fi 30 | 31 | # will set wallpaper using swwwallpaper script 32 | "$SWWW_SCRIPT" -s "$wallpaper" 33 | } 34 | 35 | 36 | case "$1" in 37 | -d|--dracula) 38 | change_wallpaper_theme "$DRACULA_DIR" 39 | ;; 40 | -g|--gruv) 41 | change_wallpaper_theme "$GRUV_DIR" 42 | ;; 43 | -n|--nord) 44 | change_wallpaper_theme "$NORD_DIR" 45 | ;; 46 | -e|--everforest) 47 | change_wallpaper_theme "$EVERFOREST_DIR" 48 | ;; 49 | -b|--everblush) 50 | change_wallpaper_theme "$EVERBLUSH_DIR" 51 | ;; 52 | *) 53 | echo "Usage: $0 [-d|--dracula] [-g|--gruv] [-n|--nord] [-e|--everforest][-b|--everblush]" 54 | exit 1 55 | ;; 56 | esac 57 | -------------------------------------------------------------------------------- /.config/hypr/scripts/switch4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Location theme files for Waybar 4 | WAYBAR_COLOR_DIR="$HOME/.config/waybar/colors" 5 | WAYBAR_COLORS_SYMLINK="$HOME/.config/waybar/colors.css" 6 | 7 | 8 | # Function to change VS Code theme 9 | change_vscode_theme() { 10 | local theme="$1" 11 | local settings_file="$HOME/.config/Code/User/settings.json" 12 | local new_theme="" 13 | 14 | case "$theme" in 15 | "dracula") 16 | new_theme="Dracula Clean" 17 | ;; 18 | "gruv") 19 | new_theme="Gruvbox Dark Medium" 20 | ;; 21 | "nord") 22 | new_theme="Nord" 23 | ;; 24 | "everforest") 25 | new_theme="Everforest Dark" 26 | ;; 27 | "everblush") 28 | new_theme="Everblush" 29 | ;; 30 | esac 31 | 32 | if [ -f "$settings_file" ]; then 33 | sed -i "s/\"workbench.colorTheme\": \"[^\"]*\"/\"workbench.colorTheme\": \"$new_theme\"/" "$settings_file" 34 | echo "Changed VS Code theme to $new_theme" 35 | else 36 | echo "Error: VS Code settings file not found" 37 | fi 38 | } 39 | 40 | # Function to change the Waybar theme 41 | change_waybar_theme() { 42 | local theme="$1" 43 | local theme_file="$WAYBAR_COLOR_DIR/${theme}.css" 44 | if [ -f "$theme_file" ]; then 45 | ln -sf "$theme_file" "$WAYBAR_COLORS_SYMLINK" 46 | echo "Changed Waybar theme to $theme" 47 | killall -SIGUSR2 waybar 48 | 49 | else 50 | echo "Error: Waybar theme file $theme_file not found" 51 | fi 52 | } 53 | 54 | # Function to change all themes 55 | change_all_themes() { 56 | local vscode_theme="$1" 57 | local waybar_theme="$2" 58 | 59 | change_vscode_theme "$vscode_theme" 60 | change_waybar_theme "$waybar_theme" 61 | 62 | 63 | # Ensure all changes are written and applied 64 | sync 65 | echo "All theme changes have been applied and written to disk." 66 | } 67 | 68 | 69 | case "$1" in 70 | -d|--dracula) 71 | change_all_themes "dracula" "dracula" 72 | ;; 73 | -g|--gruv) 74 | change_all_themes "gruv" "gruv" 75 | ;; 76 | -n|--nord) 77 | change_all_themes "nord" "nord" 78 | ;; 79 | -e|--everforest) 80 | change_all_themes "everforest" "everforest" 81 | ;; 82 | -b|--everblush) 83 | change_all_themes "everblush" "everblush" 84 | ;; 85 | *) 86 | echo "Usage: $0 [-d|--dracula] [-g|--gruv] [-n|--nord] [-e|--everforest] [-b|--everblush]" 87 | exit 1 88 | ;; 89 | esac 90 | -------------------------------------------------------------------------------- /.config/hypr/scripts/switchmaster.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ $# -eq 0 ]; then 4 | echo "Usage: $0 [-d|--dracula] [-g|--gruv] [-n|--nord] [-e|--everforest] [-b|--everblush]" 5 | exit 1 6 | fi 7 | 8 | # Function to execute all scripts with the given argument 9 | execute_all_scripts() { 10 | local arg="$1" 11 | 12 | # Importing all theme switching scripts 13 | scripts=( 14 | "$HOME/.config/hypr/scripts/switch1.sh" 15 | "$HOME/.config/hypr/scripts/switch2.sh" 16 | "$HOME/.config/hypr/scripts/switch3.sh" 17 | "$HOME/.config/hypr/scripts/switch4.sh" 18 | "$HOME/.config/hypr/scripts/switch5.sh" 19 | "$HOME/.config/hypr/scripts/switch6.sh" 20 | "$HOME/.config/hypr/scripts/switch7.sh" 21 | 22 | ) 23 | 24 | # Execute each script with the provided argument 25 | for script in "${scripts[@]}"; do 26 | if [ -f "$script" ]; then 27 | echo "Executing $script $arg" 28 | bash "$script" "$arg" 29 | else 30 | echo "Warning: $script not found" 31 | fi 32 | done 33 | } 34 | 35 | # Argument 36 | case "$1" in 37 | -d|--dracula) 38 | execute_all_scripts "-d" 39 | ;; 40 | -g|--gruv) 41 | execute_all_scripts "-g" 42 | ;; 43 | -n|--nord) 44 | execute_all_scripts "-n" 45 | ;; 46 | -e|--everforest) 47 | execute_all_scripts "-e" 48 | ;; 49 | -b|--everblush) 50 | execute_all_scripts "-b" 51 | ;; 52 | *) 53 | echo "Invalid argument. Usage: $0 [-d|--dracula] [-g|--gruv] [-n|--nord] [-e|--everforest] [-b|--everblush]" 54 | exit 1 55 | ;; 56 | esac 57 | 58 | echo "All theme changes have been applied." 59 | 60 | -------------------------------------------------------------------------------- /.config/hypr/scripts/switchwaybar.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | WAYBAR_CONFIG="$HOME/.config/waybar" 4 | STYLE_DIR="$HOME/.config/Waybar-Style" 5 | STYLE1="$STYLE_DIR/style1/waybar" 6 | STYLE2="$STYLE_DIR/style2/waybar" 7 | WAYBAR_COLOR_DIR="$HOME/.config/waybar/colors" 8 | WAYBAR_COLORS_SYMLINK="$HOME/.config/waybar/colors.css" 9 | WALL_CTL="$HOME/.config/swww/wall.ctl" 10 | 11 | # Kill existing waybar instance 12 | kill_waybar() { 13 | killall waybar 2>/dev/null 14 | sleep 0.5 15 | } 16 | 17 | # Get current theme from wall.ctl 18 | get_current_theme() { 19 | if [ -f "$WALL_CTL" ]; then 20 | theme=$(grep "source-file" "$WALL_CTL" | cut -d'|' -f2) 21 | echo "$theme" 22 | else 23 | echo "Error: wall.ctl not found" 24 | exit 1 25 | fi 26 | } 27 | 28 | # Create color symlink based on theme 29 | setup_color_theme() { 30 | local theme=$1 31 | local color_file="$WAYBAR_COLOR_DIR/${theme}.css" 32 | 33 | # Check if the color file exists 34 | if [ -f "$color_file" ]; then 35 | # Remove existing symlink if it exists 36 | rm -f "$WAYBAR_COLORS_SYMLINK" 37 | # Create new symlink 38 | ln -s "$color_file" "$WAYBAR_COLORS_SYMLINK" 39 | echo "Linked color theme: $theme" 40 | else 41 | echo "Warning: Color file for theme '$theme' not found" 42 | fi 43 | } 44 | 45 | # Logic 46 | switch_waybar() { 47 | local style=$1 48 | 49 | # Kill existing waybar 50 | kill_waybar 51 | 52 | # Remove existing waybar directory 53 | rm -rf "$WAYBAR_CONFIG" 54 | 55 | # Copy the selected style to .config 56 | cp -r "$style" "$WAYBAR_CONFIG" 57 | 58 | # Get and setup current theme colors 59 | local current_theme=$(get_current_theme) 60 | setup_color_theme "$current_theme" 61 | 62 | # Start waybar 63 | waybar >/dev/null 2>&1 & disown 64 | echo "Switched to $(basename $(dirname $style)) with theme $current_theme" 65 | } 66 | 67 | # Argument 68 | case "$1" in 69 | "-h") 70 | switch_waybar "$STYLE1" 71 | ;; 72 | "-v") 73 | switch_waybar "$STYLE2" 74 | ;; 75 | *) 76 | echo "Usage: $0 [-v|-h]" 77 | echo " -v: Switch to vertical style (style1)" 78 | echo " -h: Switch to horizontal style (style2)" 79 | exit 1 80 | ;; 81 | esac 82 | -------------------------------------------------------------------------------- /.config/hypr/scripts/systemupdate.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Check release 4 | if [ ! -f /etc/arch-release ] ; then 5 | exit 0 6 | fi 7 | 8 | # Check for updates 9 | aur=$(yay -Qua | wc -l) 10 | ofc=`checkupdates | wc -l` 11 | 12 | # Calculate total available updates 13 | upd=$(( ofc + aur )) 14 | 15 | # Format upd as two digits 16 | upd_formatted=$(printf "%02d" $upd) 17 | 18 | # Show tooltip 19 | if [ $upd -eq 0 ] ; then 20 | echo "{\"text\":\"$upd_formatted\", \"tooltip\":\" Packages are up to date\"}" 21 | else 22 | echo "{\"text\":\"$upd_formatted\", \"tooltip\":\"󱓽 Official $ofc\n󱓾 AUR $aur$fpk_disp\"}" 23 | fi 24 | 25 | -------------------------------------------------------------------------------- /.config/hypr/scripts/themectl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # This global theme control script used to use same theming and configuration settings, 4 | # maintaining visual and functional consistency across hyprland. 5 | 6 | # wallpaper var 7 | ConfDir="${XDG_CONFIG_HOME:-$HOME/.config}" 8 | WallCtl="$ConfDir/swww/wall.ctl" # Active wallpaper locations written in this file 9 | cacheDir="$HOME/.cache/wallpapers" 10 | 11 | # gtk var 12 | gtkTheme=`gsettings get org.gnome.desktop.interface gtk-theme | sed "s/'//g"` 13 | gtkMode=`gsettings get org.gnome.desktop.interface color-scheme | sed "s/'//g" | awk -F '-' '{print $2}'` 14 | 15 | # hypr var 16 | hypr_border=`hyprctl -j getoption decoration:rounding | jq '.int'` 17 | hypr_width=`hyprctl -j getoption general:border_size | jq '.int'` 18 | 19 | -------------------------------------------------------------------------------- /.config/hypr/scripts/themeswitcher.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | declare -A THEMES=( 4 | ["󰺹 Dracula"]="~/.config/hypr/scripts/switchmaster.sh -d" 5 | ["󱄆 Nord"]="~/.config/hypr/scripts/switchmaster.sh -n" 6 | ["󱁕 Everforest"]="~/.config/hypr/scripts/switchmaster.sh -e" 7 | [" Gruvbox"]="~/.config/hypr/scripts/switchmaster.sh -g" 8 | [" Everblush"]="~/.config/hypr/scripts/switchmaster.sh -b" 9 | 10 | ) 11 | 12 | theme_names=$(printf "%s\n" "${!THEMES[@]}") 13 | selected=$(echo -e "$theme_names" | rofi -dmenu -i -p "Select Theme") 14 | if [ -n "$selected" ]; then 15 | command="${THEMES[$selected]}" 16 | 17 | if [ -n "$command" ]; then 18 | eval "$command" 19 | notify-send "Theme Changed" "Switched to $selected theme" 20 | fi 21 | fi 22 | -------------------------------------------------------------------------------- /.config/hypr/scripts/volumecontrol.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ScrDir=`dirname "$(realpath "$0")"` 4 | source $ScrDir/themectl.sh 5 | 6 | 7 | # define functions 8 | 9 | print_error () 10 | { 11 | cat << "EOF" 12 | ./volumecontrol.sh -[device] 13 | ...valid device are... 14 | i -- input decive 15 | o -- output device 16 | p -- player application 17 | ...valid actions are... 18 | i -- increase volume [+5] 19 | d -- decrease volume [-5] 20 | m -- mute [x] 21 | EOF 22 | exit 1 23 | } 24 | 25 | notify_vol () 26 | { 27 | angle="$(( (($vol+2)/5) * 5 ))" 28 | ico="${icodir}/vol-${angle}.svg" 29 | bar=$(seq -s "." $(($vol / 15)) | sed 's/[0-9]//g') 30 | dunstify "t2" -a "${vol}${bar}" "${nsink}" -i $ico -r 91190 -t 800 31 | } 32 | 33 | notify_mute () 34 | { 35 | mute=$(pamixer "${srce}" --get-mute | cat) 36 | [ "${srce}" == "--default-source" ] && dvce="mic" || dvce="speaker" 37 | if [ "${mute}" == "true" ] ; then 38 | dunstify "t2" -a "muted" "${nsink}" -i ${icodir}/muted-${dvce}.svg -r 91190 -t 800 39 | else 40 | dunstify "t2" -a "unmuted" "${nsink}" -i ${icodir}/unmuted-${dvce}.svg -r 91190 -t 800 41 | fi 42 | } 43 | 44 | action_pamixer () 45 | { 46 | pamixer "${srce}" -"${1}" "${step}" 47 | vol=$(pamixer "${srce}" --get-volume | cat) 48 | } 49 | 50 | action_playerctl () 51 | { 52 | [ "${1}" == "i" ] && pvl="+" || pvl="-" 53 | playerctl --player="${srce}" volume 0.0"${step}""${pvl}" 54 | vol=$(playerctl --player="${srce}" volume | awk '{ printf "%.0f\n", $0 * 100 }') 55 | } 56 | 57 | 58 | # eval device option 59 | 60 | while getopts iop: DeviceOpt 61 | do 62 | case "${DeviceOpt}" in 63 | i) nsink=$(pamixer --list-sources | grep "_input." | tail -1 | awk -F '" "' '{print $NF}' | sed 's/"//') 64 | [ -z "${nsink}" ] && echo "ERROR: Input device not found..." && exit 0 65 | ctrl="pamixer" 66 | srce="--default-source" ;; 67 | o) nsink=$(pamixer --get-default-sink | grep "_output." | awk -F '" "' '{print $NF}' | sed 's/"//') 68 | [ -z "${nsink}" ] && echo "ERROR: Output device not found..." && exit 0 69 | ctrl="pamixer" 70 | srce="" ;; 71 | p) nsink=$(playerctl --list-all | grep -w "${OPTARG}") 72 | [ -z "${nsink}" ] && echo "ERROR: Player ${OPTARG} not active..." && exit 0 73 | ctrl="playerctl" 74 | srce="${nsink}" ;; 75 | *) print_error ;; 76 | esac 77 | done 78 | 79 | 80 | # set default variables 81 | 82 | icodir="${XDG_CONFIG_HOME:-$HOME/.config}/dunst/icons/vol" 83 | shift $((OPTIND -1)) 84 | step="${2:-5}" 85 | 86 | 87 | # execute action 88 | 89 | case "${1}" in 90 | i) action_${ctrl} i ;; 91 | d) action_${ctrl} d ;; 92 | m) "${ctrl}" "${srce}" -t && notify_mute && exit 0 ;; 93 | *) print_error ;; 94 | esac 95 | 96 | notify_vol 97 | 98 | -------------------------------------------------------------------------------- /.config/hypr/shaders/active_shader: -------------------------------------------------------------------------------- 1 | redshift 2 | -------------------------------------------------------------------------------- /.config/hypr/shaders/redshift.glsl: -------------------------------------------------------------------------------- 1 | // from https://github.com/hyprwm/Hyprland/issues/1140#issuecomment-1335128437 2 | 3 | precision mediump float; 4 | varying vec2 v_texcoord; 5 | uniform sampler2D tex; 6 | 7 | const float temperature = 5500.0; 8 | const float temperatureStrength = 1.0; 9 | 10 | #define WithQuickAndDirtyLuminancePreservation 11 | const float LuminancePreservationFactor = 1.0; 12 | 13 | // function from https://www.shadertoy.com/view/4sc3D7 14 | // valid from 1000 to 40000 K (and additionally 0 for pure full white) 15 | vec3 colorTemperatureToRGB(const in float temperature){ 16 | // values from: http://blenderartists.org/forum/showthread.php?270332-OSL-Goodness&p=2268693&viewfull=1#post2268693 17 | mat3 m = (temperature <= 6500.0) ? mat3(vec3(0.0, -2902.1955373783176, -8257.7997278925690), 18 | vec3(0.0, 1669.5803561666639, 2575.2827530017594), 19 | vec3(1.0, 1.3302673723350029, 1.8993753891711275)) : 20 | mat3(vec3(1745.0425298314172, 1216.6168361476490, -8257.7997278925690), 21 | vec3(-2666.3474220535695, -2173.1012343082230, 2575.2827530017594), 22 | vec3(0.55995389139931482, 0.70381203140554553, 1.8993753891711275)); 23 | return mix( 24 | clamp(vec3(m[0] / (vec3(clamp(temperature, 1000.0, 40000.0)) + m[1]) + m[2]), vec3(0.0), vec3(1.0)), 25 | vec3(1.0), 26 | smoothstep(1000.0, 0.0, temperature) 27 | ); 28 | } 29 | 30 | void main() { 31 | vec4 pixColor = texture2D(tex, v_texcoord); 32 | 33 | // RGB 34 | vec3 color = vec3(pixColor[0], pixColor[1], pixColor[2]); 35 | 36 | #ifdef WithQuickAndDirtyLuminancePreservation 37 | color *= mix(1.0, 38 | dot(color, vec3(0.2126, 0.7152, 0.0722)) / max(dot(color, vec3(0.2126, 0.7152, 0.0722)), 1e-5), 39 | LuminancePreservationFactor); 40 | #endif 41 | 42 | color = mix(color, color * colorTemperatureToRGB(temperature), temperatureStrength); 43 | 44 | vec4 outCol = vec4(color, pixColor[3]); 45 | 46 | gl_FragColor = outCol; 47 | } 48 | -------------------------------------------------------------------------------- /.config/hypr/shaders/vibrance-custom.glsl: -------------------------------------------------------------------------------- 1 | // from https://github.com/hyprwm/Hyprland/issues/1140#issuecomment-1335128437 2 | 3 | precision mediump float; 4 | varying vec2 v_texcoord; 5 | uniform sampler2D tex; 6 | 7 | const float temperature = 5800.0; 8 | const float temperatureStrength = 1.0; 9 | 10 | #define WithQuickAndDirtyLuminancePreservation 11 | const float LuminancePreservationFactor = 1.0; 12 | 13 | // function from https://www.shadertoy.com/view/4sc3D7 14 | // valid from 1000 to 40000 K (and additionally 0 for pure full white) 15 | vec3 colorTemperatureToRGB(const in float temperature){ 16 | // values from: http://blenderartists.org/forum/showthread.php?270332-OSL-Goodness&p=2268693&viewfull=1#post2268693 17 | mat3 m = (temperature <= 6500.0) ? mat3(vec3(0.0, -2902.1955373783176, -8257.7997278925690), 18 | vec3(0.0, 1669.5803561666639, 2575.2827530017594), 19 | vec3(1.0, 1.3302673723350029, 1.8993753891711275)) : 20 | mat3(vec3(1745.0425298314172, 1216.6168361476490, -8257.7997278925690), 21 | vec3(-2666.3474220535695, -2173.1012343082230, 2575.2827530017594), 22 | vec3(0.55995389139931482, 0.70381203140554553, 1.8993753891711275)); 23 | return mix( 24 | clamp(vec3(m[0] / (vec3(clamp(temperature, 1000.0, 40000.0)) + m[1]) + m[2]), vec3(0.0), vec3(1.0)), 25 | vec3(1.0), 26 | smoothstep(1000.0, 0.0, temperature) 27 | ); 28 | } 29 | 30 | void main() { 31 | vec4 pixColor = texture2D(tex, v_texcoord); 32 | 33 | // RGB 34 | vec3 color = vec3(pixColor[0], pixColor[1], pixColor[2]); 35 | 36 | #ifdef WithQuickAndDirtyLuminancePreservation 37 | color *= mix(1.0, 38 | dot(color, vec3(0.2126, 0.7152, 0.0722)) / max(dot(color, vec3(0.2126, 0.7152, 0.0722)), 1e-5), 39 | LuminancePreservationFactor); 40 | #endif 41 | 42 | color = mix(color, color * colorTemperatureToRGB(temperature), temperatureStrength); 43 | 44 | vec4 outCol = vec4(color, pixColor[3]); 45 | 46 | gl_FragColor = outCol; 47 | } 48 | -------------------------------------------------------------------------------- /.config/hypr/shaders/vibrant.glsl: -------------------------------------------------------------------------------- 1 | precision mediump float; 2 | varying vec2 v_texcoord; 3 | uniform sampler2D tex; 4 | 5 | // Adjustable parameters 6 | const float brightnessIncrease = 0.02; // Adjust this value to change brightness (0.0 to 1.0) 7 | const float temperature = 6100.0; 8 | const float temperatureStrength = 1.0; 9 | 10 | #define WithQuickAndDirtyLuminancePreservation 11 | const float LuminancePreservationFactor = 1.0; 12 | 13 | // Function to adjust brightness 14 | vec3 adjustBrightness(vec3 color, float adjustment) { 15 | return clamp(color + adjustment, 0.0, 1.0); 16 | } 17 | 18 | // Function from https://www.shadertoy.com/view/4sc3D7 19 | // Valid from 1000 to 40000 K (and additionally 0 for pure full white) 20 | vec3 colorTemperatureToRGB(const in float temperature){ 21 | // values from: http://blenderartists.org/forum/showthread.php?270332-OSL-Goodness&p=2268693&viewfull=1#post2268693 22 | mat3 m = (temperature <= 6500.0) ? mat3(vec3(0.0, -2902.1955373783176, -8257.7997278925690), 23 | vec3(0.0, 1669.5803561666639, 2575.2827530017594), 24 | vec3(1.0, 1.3302673723350029, 1.8993753891711275)) : 25 | mat3(vec3(1745.0425298314172, 1216.6168361476490, -8257.7997278925690), 26 | vec3(-2666.3474220535695, -2173.1012343082230, 2575.2827530017594), 27 | vec3(0.55995389139931482, 0.70381203140554553, 1.8993753891711275)); 28 | return mix( 29 | clamp(vec3(m[0] / (vec3(clamp(temperature, 1000.0, 40000.0)) + m[1]) + m[2]), vec3(0.0), vec3(1.0)), 30 | vec3(1.0), 31 | smoothstep(1000.0, 0.0, temperature) 32 | ); 33 | } 34 | 35 | void main() { 36 | vec4 pixColor = texture2D(tex, v_texcoord); 37 | vec3 color = pixColor.rgb; 38 | 39 | // Adjust brightness 40 | color = adjustBrightness(color, brightnessIncrease); 41 | 42 | #ifdef WithQuickAndDirtyLuminancePreservation 43 | color *= mix(1.0, 44 | dot(color, vec3(0.2126, 0.7152, 0.0722)) / max(dot(color, vec3(0.2126, 0.7152, 0.0722)), 1e-5), 45 | LuminancePreservationFactor); 46 | #endif 47 | 48 | color = mix(color, color * colorTemperatureToRGB(temperature), temperatureStrength); 49 | 50 | gl_FragColor = vec4(color, pixColor.a); 51 | } -------------------------------------------------------------------------------- /.config/hypr/themes/Dracula.conf: -------------------------------------------------------------------------------- 1 | exec = gsettings set org.gnome.desktop.interface icon-theme 'Tela-circle-dracula' 2 | exec = gsettings set org.gnome.desktop.interface gtk-theme 'Dracula' 3 | exec = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' 4 | 5 | general { 6 | gaps_in = 7 7 | gaps_out = 5 8 | border_size = 2 9 | col.active_border = rgba(282A36ff) rgba(44475Aff) 10 | col.inactive_border = rgba(282A36ff) 11 | layout = dwindle 12 | resize_on_border = true 13 | } 14 | 15 | 16 | 17 | decoration { 18 | rounding = 3 19 | 20 | shadow { 21 | enabled = true 22 | ignore_window = true 23 | offset = 3 3 24 | range = 30 25 | render_power = 5 26 | color = rgba(00000099) 27 | } 28 | 29 | blur { 30 | enabled = yes 31 | size = 0 32 | passes = 0 33 | new_optimizations = on 34 | ignore_opacity = on 35 | xray = false 36 | } 37 | } 38 | 39 | layerrule = unset,waybar 40 | 41 | -------------------------------------------------------------------------------- /.config/hypr/themes/Everblush.conf: -------------------------------------------------------------------------------- 1 | exec = gsettings set org.gnome.desktop.interface icon-theme 'BeautyDream' 2 | exec = gsettings set org.gnome.desktop.interface gtk-theme 'Everblush' 3 | exec = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' 4 | 5 | general { 6 | gaps_in = 5 7 | gaps_out = 0 8 | border_size = 1 9 | col.active_border = rgba(141b1eff) 10 | col.inactive_border = rgba(232a2dff) 11 | layout = dwindle 12 | resize_on_border = true 13 | } 14 | 15 | 16 | decoration { 17 | rounding = 3 18 | 19 | shadow { 20 | enabled = true 21 | ignore_window = true 22 | offset = 3 3 23 | range = 20 24 | render_power = 5 25 | color = rgba(00000099) 26 | } 27 | 28 | blur { 29 | enabled = yes 30 | size = 0 31 | passes = 0 32 | new_optimizations = on 33 | ignore_opacity = on 34 | xray = false 35 | } 36 | } 37 | 38 | layerrule = unset,waybar -------------------------------------------------------------------------------- /.config/hypr/themes/Everforest.conf: -------------------------------------------------------------------------------- 1 | exec = gsettings set org.gnome.desktop.interface icon-theme 'Nordzy-turquoise-dark' 2 | exec = gsettings set org.gnome.desktop.interface gtk-theme 'Everforest-Dark-Soft' 3 | exec = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' 4 | 5 | general { 6 | gaps_in = 5 7 | gaps_out = 0 8 | border_size = 2 9 | col.active_border = rgba(1e2326ff) 10 | col.inactive_border = rgba(1e2326ff) 11 | layout = dwindle 12 | resize_on_border = true 13 | } 14 | 15 | 16 | decoration { 17 | rounding = 1 18 | 19 | shadow { 20 | enabled = true 21 | ignore_window = true 22 | offset = 3 3 23 | range = 30 24 | render_power = 5 25 | color = rgba(00000099) 26 | } 27 | 28 | blur { 29 | enabled = yes 30 | size = 0 31 | passes = 0 32 | new_optimizations = on 33 | ignore_opacity = on 34 | xray = false 35 | } 36 | } 37 | 38 | 39 | layerrule = unset,waybar -------------------------------------------------------------------------------- /.config/hypr/themes/Gruv.conf: -------------------------------------------------------------------------------- 1 | exec = gsettings set org.gnome.desktop.interface icon-theme 'Gruvbox-Plus-Dark' 2 | exec = gsettings set org.gnome.desktop.interface gtk-theme 'Gruvbox-Dark' 3 | exec = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' 4 | 5 | general { 6 | gaps_in = 7 7 | gaps_out = 0 8 | border_size = 2 9 | col.active_border = rgba(1d2021ff) 10 | col.inactive_border = rgba(2b292eff) 11 | layout = dwindle 12 | resize_on_border = true 13 | } 14 | 15 | 16 | decoration { 17 | rounding = 0 18 | 19 | shadow { 20 | enabled = true 21 | ignore_window = true 22 | offset = 3 3 23 | range = 20 24 | render_power = 5 25 | color = rgba(00000099) 26 | } 27 | 28 | blur { 29 | enabled = yes 30 | size = 0 31 | passes = 0 32 | new_optimizations = on 33 | ignore_opacity = on 34 | xray = false 35 | } 36 | } 37 | 38 | layerrule = unset,waybar 39 | -------------------------------------------------------------------------------- /.config/hypr/themes/Nord.conf: -------------------------------------------------------------------------------- 1 | exec = gsettings set org.gnome.desktop.interface icon-theme 'Zafiro-Nord-Black' 2 | exec = gsettings set org.gnome.desktop.interface gtk-theme 'Nordic-darker' 3 | exec = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' 4 | 5 | general { 6 | gaps_in = 10 7 | gaps_out = 5 8 | border_size = 2 9 | col.active_border = rgba(4c566aff) rgba(434c5eff) 45deg 10 | col.inactive_border = rgba(3b4252ff) 11 | layout = dwindle 12 | resize_on_border = true 13 | } 14 | 15 | 16 | 17 | decoration { 18 | rounding = 3 19 | 20 | shadow { 21 | enabled = true 22 | ignore_window = true 23 | offset = 3 3 24 | range = 30 25 | render_power = 5 26 | color = rgba(00000099) 27 | } 28 | 29 | blur { 30 | enabled = yes 31 | size = 0 32 | passes = 0 33 | new_optimizations = on 34 | ignore_opacity = on 35 | xray = false 36 | } 37 | } 38 | 39 | layerrule = unset,waybar 40 | -------------------------------------------------------------------------------- /.config/hypr/themes/common.conf: -------------------------------------------------------------------------------- 1 | 2 | #█▀▀ █░█ █▀█ █▀ █▀█ █▀█ 3 | #█▄▄ █▄█ █▀▄ ▄█ █▄█ █▀▄ 4 | 5 | #env = XCURSOR_THEME,Bibata-Modern-Ice 6 | #env = XCURSOR_SIZE,20 7 | 8 | exec = hyprctl setcursor Bibata-Modern-Ice 20 9 | exec = gsettings set org.gnome.desktop.interface cursor-theme 'Bibata-Modern-Ice' 10 | exec = gsettings set org.gnome.desktop.interface cursor-size 20 11 | 12 | 13 | #█▀▀ █▀█ █▄░█ ▀█▀ 14 | #█▀░ █▄█ █░▀█ ░█░ 15 | 16 | exec = gsettings set org.gnome.desktop.interface font-name 'IBM Plex Sans Medium 10' 17 | exec = gsettings set org.gnome.desktop.interface document-font-name 'IBM Plex Sans Medium 10' 18 | exec = gsettings set org.gnome.desktop.interface monospace-font-name 'CaskaydiaCove Nerd Font Mono 9' 19 | exec = gsettings set org.gnome.desktop.interface font-antialiasing 'rgba' 20 | exec = gsettings set org.gnome.desktop.interface font-hinting 'full' 21 | 22 | 23 | #█▀ █▀█ █▀▀ █▀▀ █ ▄▀█ █░░ 24 | #▄█ █▀▀ ██▄ █▄▄ █ █▀█ █▄▄ 25 | 26 | decoration { 27 | dim_special = 0.3 28 | blur { 29 | special = true 30 | } 31 | } 32 | 33 | -------------------------------------------------------------------------------- /.config/hypr/windowrules.conf: -------------------------------------------------------------------------------- 1 | 2 | # █░█░█ █ █▄░█ █▀▄ █▀█ █░█░█   █▀█ █░█ █░░ █▀▀ █▀ 3 | # ▀▄▀▄▀ █ █░▀█ █▄▀ █▄█ ▀▄▀▄▀   █▀▄ █▄█ █▄▄ ██▄ ▄█ 4 | 5 | 6 | # See https://wiki.hyprland.org/Configuring/Window-Rules/ for more 7 | 8 | #windowrulev2 = opacity 0.90 0.90,class:^(firefox)$ 9 | windowrulev2 = opacity 0.95 0.95,class:^(org.kde.okular)$ 10 | windowrulev2 = opacity 0.85 0.85,class:^(Logseq)$ 11 | #windowrulev2 = opacity 0.80 0.80,class:^(jetbrains-pycharm-ce)$ 12 | #windowrulev2 = opacity 0.95 0.95,class:^(code)$ 13 | #windowrulev2 = opacity 0.95 0.95,class:^(code-url-handler)$ 14 | windowrulev2 = opacity 0.90 0.90,class:^(kitty)$ 15 | # windowrulev2 = opacity 0.95 0.95,class:^(org.kde.dolphin)$ 16 | #windowrulev2 = opacity 0.80 0.80,class:^(org.kde.ark)$ 17 | windowrulev2 = opacity 0.95 0.95,class:^(nwg-look)$ 18 | windowrulev2 = opacity 0.95 0.95,class:^(qt5ct)$ 19 | windowrulev2 = opacity 0.95 0.95,class:^(qt6ct)$ 20 | windowrulev2 = opacity 0.95 0.95,class:^(kvantummanager)$ 21 | #windowrulev2 = opacity 0.80 0.80,class:^(obsidian)$ 22 | windowrulev2 = opacity 0.87 0.87,class:^(localsend)$ 23 | #windowrulev2 = opacity 0.95 0.95,class:^(google-chrome)$ 24 | windowrulev2 = opacity 0.90 0.90,class:^(Notesnook)$ 25 | #windowrulev2 = opacity 0.80 0.80,class:^(spotube)$ 26 | 27 | 28 | windowrulev2 = opacity 0.95 0.95,class:^(com.obsproject.Studio)$ #Obs-Qt 29 | #windowrulev2 = opacity 0.85 0.85,class:^(discord)$ #Discord-Electron 30 | 31 | windowrulev2 = opacity 0.80 0.70,class:^(pavucontrol)$ 32 | windowrulev2 = opacity 0.80 0.70,class:^(blueman-manager)$ 33 | windowrulev2 = opacity 0.80 0.70,class:^(nm-applet)$ 34 | windowrulev2 = opacity 0.80 0.70,class:^(nm-connection-editor)$ 35 | 36 | windowrulev2 = float,title:^(Picture-in-Picture)$ 37 | windowrulev2 = float,class:^(kvantummanager)$ 38 | windowrulev2 = float,class:^(qt5ct)$ 39 | windowrulev2 = float,class:^(qt6ct)$ 40 | windowrulev2 = float,class:^(nwg-look)$ 41 | windowrulev2 = float,class:^(org.kde.ark)$ 42 | windowrulev2 = float,class:^(pavucontrol)$ 43 | windowrulev2 = float,class:^(blueman-manager)$ 44 | windowrulev2 = float,class:^(nm-applet)$ 45 | windowrulev2 = float,class:^(nm-connection-editor)$ 46 | windowrulev2 = float,class:^(lxqt-policykit-agent)$ 47 | windowrulev2 = float, size 50% 50%,class:^(kitty)$ 48 | windowrulev2 = float, size 50% 50%,class:^(ranger)$ 49 | windowrulev2 = float, centerwindow class:^(discord)$ 50 | windowrulev2 = float, size 50% 50%,class:^(io.bassi.Amberol)$ 51 | -------------------------------------------------------------------------------- /.config/kitty/kitty.conf: -------------------------------------------------------------------------------- 1 | font_family CaskaydiaCove Nerd Font Mono 2 | bold_font auto 3 | italic_font auto 4 | bold_italic_font auto 5 | 6 | font_size 14.0 7 | window_padding_width 2 8 | include themes/theme.conf 9 | #background_opacity 0.60 10 | #hide_window_decorations yes 11 | #confirm_os_window_close 0 12 | -------------------------------------------------------------------------------- /.config/kitty/themes/Dracula.conf: -------------------------------------------------------------------------------- 1 | background #1e1f28 2 | foreground #f8f8f2 3 | cursor #bbbbbb 4 | selection_background #44475a 5 | color0 #000000 6 | color8 #545454 7 | color1 #ff5555 8 | color9 #ff5454 9 | color2 #50fa7b 10 | color10 #50fa7b 11 | color3 #f0fa8b 12 | color11 #f0fa8b 13 | color4 #bd92f8 14 | color12 #bd92f8 15 | color5 #ff78c5 16 | color13 #ff78c5 17 | color6 #8ae9fc 18 | color14 #8ae9fc 19 | color7 #bbbbbb 20 | color15 #ffffff 21 | selection_foreground #1e1f28 22 | -------------------------------------------------------------------------------- /.config/kitty/themes/Everblush.conf: -------------------------------------------------------------------------------- 1 | 2 | background #141b1e 3 | foreground #dadada 4 | cursor #dadada 5 | selection_foreground #dadada 6 | selection_background #232a2d 7 | 8 | # Black (background) 9 | color0 #141b1e 10 | color8 #232a2d 11 | 12 | # Red 13 | color1 #e57474 14 | color9 #e57474 15 | 16 | # Green 17 | color2 #8ccf7e 18 | color10 #8ccf7e 19 | 20 | # Yellow 21 | color3 #e5c76b 22 | color11 #e5c76b 23 | 24 | # Blue 25 | color4 #67b0e8 26 | color12 #67b0e8 27 | 28 | # Magenta 29 | color5 #c47fd5 30 | color13 #c47fd5 31 | 32 | # Cyan 33 | color6 #6cbfbf 34 | color14 #6cbfbf 35 | 36 | # White (foreground) 37 | color7 #b3b9b8 38 | color15 #dadada -------------------------------------------------------------------------------- /.config/kitty/themes/Everforest.conf: -------------------------------------------------------------------------------- 1 | 2 | background #232a2e 3 | foreground #d8caac 4 | 5 | cursor #d8caac 6 | 7 | selection_foreground #d8caac 8 | selection_background #505a60 9 | 10 | color0 #3c474d 11 | color8 #868d80 12 | 13 | # red 14 | color1 #e68183 15 | # light red 16 | color9 #e68183 17 | 18 | # green 19 | color2 #a7c080 20 | # light green 21 | color10 #a7c080 22 | 23 | # yellow 24 | color3 #d9bb80 25 | # light yellow 26 | color11 #d9bb80 27 | 28 | # blue 29 | color4 #83b6af 30 | # light blue 31 | color12 #83b6af 32 | 33 | # magenta 34 | color5 #d39bb6 35 | # light magenta 36 | color13 #d39bb6 37 | 38 | # cyan 39 | color6 #87c095 40 | # light cyan 41 | color14 #87c095 42 | 43 | # light gray 44 | color7 #868d80 45 | # dark gray 46 | color15 #868d80 47 | -------------------------------------------------------------------------------- /.config/kitty/themes/Gruv.conf: -------------------------------------------------------------------------------- 1 | background #282828 2 | foreground #fdfff1 3 | 4 | cursor #fdfff1 5 | cursor_text_color #000000 6 | selection_foreground #3b3c35 7 | selection_background #fdfff1 8 | 9 | # dull black 10 | color0 #3b3c35 11 | # light black 12 | color8 #6e7066 13 | 14 | # dull red 15 | color1 #f82570 16 | # light red 17 | color9 #f82570 18 | 19 | # dull green 20 | color2 #a6e12d 21 | # light green 22 | color10 #a6e12d 23 | 24 | # yellow 25 | color3 #e4db73 26 | # light yellow 27 | color11 #e4db73 28 | 29 | # blue 30 | color4 #fc961f 31 | # light blue 32 | color12 #fc961f 33 | 34 | # magenta 35 | color5 #ae81ff 36 | # light magenta 37 | color13 #ae81ff 38 | 39 | # cyan 40 | color6 #66d9ee 41 | # light cyan 42 | color14 #66d9ee 43 | 44 | # dull white 45 | color7 #fdfff1 46 | # bright white 47 | color15 #fdfff1 48 | -------------------------------------------------------------------------------- /.config/kitty/themes/Nord.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | foreground #D8DEE9 4 | background #2E3440 5 | selection_foreground #000000 6 | selection_background #FFFACD 7 | url_color #0087BD 8 | cursor #81A1C1 9 | 10 | # black 11 | color0 #3B4252 12 | color8 #4C566A 13 | 14 | # red 15 | color1 #BF616A 16 | color9 #BF616A 17 | 18 | # green 19 | color2 #A3BE8C 20 | color10 #A3BE8C 21 | 22 | # yellow 23 | color3 #EBCB8B 24 | color11 #EBCB8B 25 | 26 | # blue 27 | color4 #81A1C1 28 | color12 #81A1C1 29 | 30 | # magenta 31 | color5 #B48EAD 32 | color13 #B48EAD 33 | 34 | # cyan 35 | color6 #88C0D0 36 | color14 #8FBCBB 37 | 38 | # white 39 | color7 #E5E9F0 40 | color15 #ECEFF4 41 | -------------------------------------------------------------------------------- /.config/neofetch/pngs/Screenshot_2024-03-01_at_15-54-09_BwessedAI_User_Profile_DeviantArt-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/neofetch/pngs/Screenshot_2024-03-01_at_15-54-09_BwessedAI_User_Profile_DeviantArt-removebg-preview.png -------------------------------------------------------------------------------- /.config/neofetch/pngs/gojo_satoru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/neofetch/pngs/gojo_satoru.png -------------------------------------------------------------------------------- /.config/nwg-look/config: -------------------------------------------------------------------------------- 1 | { 2 | "export-settings-ini": true, 3 | "export-gtkrc-20": true, 4 | "export-index-theme": true, 5 | "export-xsettingsd": true 6 | } -------------------------------------------------------------------------------- /.config/okular-theme/dracula: -------------------------------------------------------------------------------- 1 | [$Version] 2 | update_info=okular.upd:annotation-toolbar,okular.upd:builtin-annotations 3 | 4 | [Core General] 5 | ObeyDRM=false 6 | 7 | [Core Performance] 8 | TextHinting=Enabled 9 | 10 | [Dlg Accessibility] 11 | BWContrast=3 12 | BWThreshold=19 13 | RecolorBackground=49,52,66 14 | RecolorForeground=225,232,231 15 | 16 | [Dlg Presentation] 17 | SlidesBackgroundColor=76,79,105 18 | 19 | [Document] 20 | ChangeColors=true 21 | PaperColor=51,53,70 22 | RenderMode=Recolor 23 | 24 | [PageView] 25 | BackgroundColor=49,52,66 26 | UseCustomBackgroundColor=true 27 | 28 | [Reviews] 29 | QuickAnnotationTools=1,2,3,4,5,6 30 | -------------------------------------------------------------------------------- /.config/okular-theme/everblush: -------------------------------------------------------------------------------- 1 | [$Version] 2 | update_info=okular.upd:annotation-toolbar,okular.upd:builtin-annotations 3 | 4 | [Core General] 5 | ObeyDRM=false 6 | 7 | [Core Performance] 8 | TextHinting=Enabled 9 | 10 | [Dlg Accessibility] 11 | BWContrast=3 12 | BWThreshold=19 13 | RecolorBackground=35,42,45 14 | RecolorForeground=179,185,184 15 | 16 | [Dlg Presentation] 17 | SlidesBackgroundColor=76,79,105 18 | 19 | [Document] 20 | ChangeColors=true 21 | PaperColor=51,53,70 22 | RenderMode=Recolor 23 | 24 | [PageView] 25 | BackgroundColor=35,42,45 26 | UseCustomBackgroundColor=true 27 | 28 | [Reviews] 29 | QuickAnnotationTools=1,2,3,4,5,6 30 | -------------------------------------------------------------------------------- /.config/okular-theme/everforest: -------------------------------------------------------------------------------- 1 | [$Version] 2 | update_info=okular.upd:annotation-toolbar,okular.upd:builtin-annotations 3 | 4 | [Core General] 5 | ObeyDRM=false 6 | 7 | [Core Performance] 8 | TextHinting=Enabled 9 | 10 | [Dlg Accessibility] 11 | BWContrast=3 12 | BWThreshold=19 13 | RecolorBackground=52,63,68 14 | RecolorForeground=211,198,170 15 | 16 | [Dlg Presentation] 17 | SlidesBackgroundColor=76,79,105 18 | 19 | [Document] 20 | ChangeColors=true 21 | PaperColor=51,53,70 22 | RenderMode=Recolor 23 | 24 | [PageView] 25 | BackgroundColor=52,63,68 26 | UseCustomBackgroundColor=true 27 | 28 | [Reviews] 29 | QuickAnnotationTools=1,2,3,4,5,6 30 | -------------------------------------------------------------------------------- /.config/okular-theme/gruv: -------------------------------------------------------------------------------- 1 | [$Version] 2 | update_info=okular.upd:annotation-toolbar,okular.upd:builtin-annotations 3 | 4 | [Core General] 5 | ObeyDRM=false 6 | 7 | [Core Performance] 8 | TextHinting=Enabled 9 | 10 | [Dlg Accessibility] 11 | BWContrast=3 12 | BWThreshold=19 13 | RecolorBackground=52,52,52 14 | RecolorForeground=227,209,206 15 | 16 | [Dlg Presentation] 17 | SlidesBackgroundColor=76,79,105 18 | 19 | [Document] 20 | ChangeColors=true 21 | PaperColor=51,53,70 22 | RenderMode=Recolor 23 | 24 | [PageView] 25 | BackgroundColor=52,52,52 26 | UseCustomBackgroundColor=true 27 | 28 | [Reviews] 29 | QuickAnnotationTools=1,2,3,4,5,6 30 | -------------------------------------------------------------------------------- /.config/okular-theme/nord: -------------------------------------------------------------------------------- 1 | [$Version] 2 | update_info=okular.upd:annotation-toolbar,okular.upd:builtin-annotations 3 | 4 | [Core General] 5 | ObeyDRM=false 6 | 7 | [Core Performance] 8 | TextHinting=Enabled 9 | 10 | [Dlg Accessibility] 11 | BWContrast=3 12 | BWThreshold=19 13 | RecolorBackground=51,58,72 14 | RecolorForeground=195,217,220 15 | 16 | [Dlg Presentation] 17 | SlidesBackgroundColor=76,79,105 18 | 19 | [Document] 20 | ChangeColors=true 21 | PaperColor=51,53,70 22 | RenderMode=Recolor 23 | 24 | [PageView] 25 | BackgroundColor=51,58,72 26 | UseCustomBackgroundColor=true 27 | 28 | [Reviews] 29 | QuickAnnotationTools=1,2,3,4,5,6 30 | -------------------------------------------------------------------------------- /.config/qt5ct/colors/Dracula.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#fff8f8f2, #ff282a36, #ff6272a4, #ff44475a, #ff44475a, #ff6272a4, #fff8f8f2, #fff8f8f2, #fff8f8f2, #ff282a36, #ff282a36, #ff6272a4, #ff8be9fd, #ff282a36, #ff8be9fd, #ffff79c6, #ff282a36, #fff8f8f2, #ff44475a, #fff8f8f2, #806272a4 3 | disabled_colors=#ff6272a4, #ff282a36, #ff6272a4, #ff44475a, #ff44475a, #ff6272a4, #ff6272a4, #ff6272a4, #ff6272a4, #ff282a36, #ff282a36, #ff6272a4, #ff8be9fd, #ff44475a, #ff8be9fd, #ffff79c6, #ff282a36, #fff8f8f2, #ff44475a, #fff8f8f2, #806272a4 4 | inactive_colors=#fff8f8f2, #ff282a36, #ff6272a4, #ff44475a, #ff44475a, #ff6272a4, #fff8f8f2, #fff8f8f2, #fff8f8f2, #ff282a36, #ff282a36, #ff6272a4, #ff8be9fd, #ff6272a4, #ff8be9fd, #ffff79c6, #ff282a36, #fff8f8f2, #ff44475a, #fff8f8f2, #806272a4 5 | -------------------------------------------------------------------------------- /.config/qt5ct/colors/Everblush.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ff67b0e8, #ff232a2d, #ff232a2d, #ffb3b9b8, #ff141b1e, #ff141b1e, #ff8ccf7e, #ffe57474, #ffc47fd5, #ff141b1e, #ff141b1e, #ff141b1e, #ff232a2d, #ffdadada, #ff67b0e8, #ff6cbfbf, #ff141b1e, #ffe5c76b, #ff141b1e, #ffdadada, #ff141b1e 3 | disabled_colors=#ff67b0e8, #ff232a2d, #ff232a2d, #ffb3b9b8, #ff141b1e, #ff141b1e, #ff8ccf7e, #ffe57474, #ffc47fd5, #ff141b1e, #ff141b1e, #ff141b1e, #ff232a2d, #ffdadada, #ff67b0e8, #ff6cbfbf, #ff141b1e, #ffe5c76b, #ff141b1e, #ffdadada, #ff141b1e 4 | inactive_colors=#ff67b0e8, #ff232a2d, #ff232a2d, #ffb3b9b8, #ff141b1e, #ff141b1e, #ff8ccf7e, #ffe57474, #ffc47fd5, #ff141b1e, #ff141b1e, #ff141b1e, #ff232a2d, #ffdadada, #ff67b0e8, #ff6cbfbf, #ff141b1e, #ffe5c76b, #ff141b1e, #ffdadada, #ff141b1e 5 | -------------------------------------------------------------------------------- /.config/qt5ct/colors/Everforest.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ffdacfa0, #ff2b3339, #ff4f5b58, #ff374145, #ff404c51, #ff4f5b58, #ffdacfa0, #ffdacfa0, #ffdacfa0, #ff2b3339, #ff2b3339, #ff4f5b58, #ff83c092, #ff2b3339, #ff83c092, #ffe67e80, #ff2b3339, #ffdacfa0, #ff374145, #ffdacfa0, #804f5b58 3 | disabled_colors=#ff4f5b58, #ff2b3339, #ff4f5b58, #ff374145, #ff404c51, #ff4f5b58, #ff4f5b58, #ff4f5b58, #ff4f5b58, #ff2b3339, #ff2b3339, #ff4f5b58, #ff83c092, #ff404c51, #ff83c092, #ffe67e80, #ff2b3339, #ffdacfa0, #ff374145, #ffdacfa0, #804f5b58 4 | inactive_colors=#ffdacfa0, #ff2b3339, #ff4f5b58, #ff374145, #ff404c51, #ff4f5b58, #ffdacfa0, #ffdacfa0, #ffdacfa0, #ff2b3339, #ff2b3339, #ff4f5b58, #ff83c092, #ff4f5b58, #ff83c092, #ffe67e80, #ff2b3339, #ffdacfa0, #ff374145, #ffdacfa0, #804f5b58 -------------------------------------------------------------------------------- /.config/qt5ct/colors/Gruv.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ffebdbb2, #ff282828, #ff665c54, #ff3c3836, #ff504945, #ff665c54, #ffebdbb2, #ffebdbb2, #ffebdbb2, #ff282828, #ff282828, #ff665c54, #ff83a598, #ff282828, #ff83a598, #fffb4934, #ff282828, #ffebdbb2, #ff3c3836, #ffebdbb2, #80665c54 3 | disabled_colors=#ff665c54, #ff282828, #ff665c54, #ff3c3836, #ff504945, #ff665c54, #ff665c54, #ff665c54, #ff665c54, #ff282828, #ff282828, #ff665c54, #ff83a598, #ff504945, #ff83a598, #fffb4934, #ff282828, #ffebdbb2, #ff3c3836, #ffebdbb2, #80665c54 4 | inactive_colors=#ffebdbb2, #ff282828, #ff665c54, #ff3c3836, #ff504945, #ff665c54, #ffebdbb2, #ffebdbb2, #ffebdbb2, #ff282828, #ff282828, #ff665c54, #ff83a598, #ff665c54, #ff83a598, #fffb4934, #ff282828, #ffebdbb2, #ff3c3836, #ffebdbb2, #80665c54 5 | -------------------------------------------------------------------------------- /.config/qt5ct/colors/Nord.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ffd8dee9, #ff2e3440, #ff4c566a, #ff3b4252, #ff434c5e, #ff4c566a, #ffd8dee9, #ffd8dee9, #ffd8dee9, #ff2e3440, #ff2e3440, #ff4c566a, #ff88c0d0, #ff2e3440, #ff88c0d0, #ffbf616a, #ff2e3440, #ffd8dee9, #ff3b4252, #ffd8dee9, #804c566a 3 | disabled_colors=#ff4c566a, #ff2e3440, #ff4c566a, #ff3b4252, #ff434c5e, #ff4c566a, #ff4c566a, #ff4c566a, #ff4c566a, #ff2e3440, #ff2e3440, #ff4c566a, #ff88c0d0, #ff434c5e, #ff88c0d0, #ffbf616a, #ff2e3440, #ffd8dee9, #ff3b4252, #ffd8dee9, #804c566a 4 | inactive_colors=#ffd8dee9, #ff2e3440, #ff4c566a, #ff3b4252, #ff434c5e, #ff4c566a, #ffd8dee9, #ffd8dee9, #ffd8dee9, #ff2e3440, #ff2e3440, #ff4c566a, #ff88c0d0, #ff4c566a, #ff88c0d0, #ffbf616a, #ff2e3440, #ffd8dee9, #ff3b4252, #ffd8dee9, #804c566a 5 | -------------------------------------------------------------------------------- /.config/qt5ct/qt5ct.conf: -------------------------------------------------------------------------------- 1 | [Appearance] 2 | color_scheme_path=/home/ayu/.config/qt5ct/colors/Everblush.conf 3 | custom_palette=true 4 | icon_theme=BeautyDream 5 | standard_dialogs=default 6 | style=gtk2 7 | 8 | [Fonts] 9 | fixed="IBM Plex Sans,10,-1,5,50,0,0,0,0,0,Regular" 10 | general="IBM Plex Sans Medium,10,-1,5,57,0,0,0,0,0,Regular" 11 | 12 | [Interface] 13 | activate_item_on_single_click=1 14 | buttonbox_layout=0 15 | cursor_flash_time=1000 16 | dialog_buttons_have_icons=0 17 | double_click_interval=400 18 | gui_effects=General, AnimateMenu, AnimateCombo, AnimateTooltip, AnimateToolBox 19 | keyboard_scheme=2 20 | menus_have_icons=false 21 | show_shortcuts_in_context_menus=true 22 | stylesheets=@Invalid() 23 | toolbutton_style=4 24 | underline_shortcut=2 25 | wheel_scroll_lines=4 26 | 27 | [SettingsWindow] 28 | geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x5s\0\0\x3\xfb\0\0\0\0\0\0\0\0\0\0\x5\x39\0\0\x6\xe\0\0\0\0\x2\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x5s\0\0\x3\xfb) 29 | 30 | [Troubleshooting] 31 | force_raster_widgets=1 32 | ignored_applications=@Invalid() 33 | -------------------------------------------------------------------------------- /.config/qt6ct/colors/Dracula.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#fff8f8f2, #ff282a36, #ff6272a4, #ff44475a, #ff44475a, #ff6272a4, #fff8f8f2, #fff8f8f2, #fff8f8f2, #ff282a36, #ff282a36, #ff6272a4, #ff8be9fd, #ff282a36, #ff8be9fd, #ffff79c6, #ff282a36, #fff8f8f2, #ff44475a, #fff8f8f2, #806272a4 3 | disabled_colors=#ff6272a4, #ff282a36, #ff6272a4, #ff44475a, #ff44475a, #ff6272a4, #ff6272a4, #ff6272a4, #ff6272a4, #ff282a36, #ff282a36, #ff6272a4, #ff8be9fd, #ff44475a, #ff8be9fd, #ffff79c6, #ff282a36, #fff8f8f2, #ff44475a, #fff8f8f2, #806272a4 4 | inactive_colors=#fff8f8f2, #ff282a36, #ff6272a4, #ff44475a, #ff44475a, #ff6272a4, #fff8f8f2, #fff8f8f2, #fff8f8f2, #ff282a36, #ff282a36, #ff6272a4, #ff8be9fd, #ff6272a4, #ff8be9fd, #ffff79c6, #ff282a36, #fff8f8f2, #ff44475a, #fff8f8f2, #806272a4 5 | -------------------------------------------------------------------------------- /.config/qt6ct/colors/Everblush.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ffc47fd5, #ff232a2d, #ff232a2d, #ffb3b9b8, #ff141b1e, #ff141b1e, #ffe57474, #ff141b1e, #ffc47fd5, #ff141b1e, #ff141b1e, #ff141b1e, #ff232a2d, #ffdadada, #ff67b0e8, #ff67b0e8, #ff141b1e, #ffe57474, #ff141b1e, #ffdadada, #ff141b1e 3 | disabled_colors=#ffc47fd5, #ff232a2d, #ff232a2d, #ffb3b9b8, #ff141b1e, #ff141b1e, #ffe57474, #ff141b1e, #ffc47fd5, #ff141b1e, #ff141b1e, #ff141b1e, #ff232a2d, #ffdadada, #ff67b0e8, #ff67b0e8, #ff141b1e, #ffe57474, #ff141b1e, #ffdadada, #ff141b1e 4 | inactive_colors=#ffc47fd5, #ff232a2d, #ff232a2d, #ffb3b9b8, #ff141b1e, #ff141b1e, #ffe57474, #ff141b1e, #ffc47fd5, #ff141b1e, #ff141b1e, #ff141b1e, #ff232a2d, #ffdadada, #ff67b0e8, #ff67b0e8, #ff141b1e, #ffe57474, #ff141b1e, #ffdadada, #ff141b1e 5 | -------------------------------------------------------------------------------- /.config/qt6ct/colors/Everforest.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ffdacfa0, #ff2b3339, #ff4f5b58, #ff374145, #ff404c51, #ff4f5b58, #ffdacfa0, #ffdacfa0, #ffdacfa0, #ff2b3339, #ff2b3339, #ff4f5b58, #ff83c092, #ff2b3339, #ff83c092, #ffe67e80, #ff2b3339, #ffdacfa0, #ff374145, #ffdacfa0, #804f5b58 3 | disabled_colors=#ff4f5b58, #ff2b3339, #ff4f5b58, #ff374145, #ff404c51, #ff4f5b58, #ff4f5b58, #ff4f5b58, #ff4f5b58, #ff2b3339, #ff2b3339, #ff4f5b58, #ff83c092, #ff404c51, #ff83c092, #ffe67e80, #ff2b3339, #ffdacfa0, #ff374145, #ffdacfa0, #804f5b58 4 | inactive_colors=#ffdacfa0, #ff2b3339, #ff4f5b58, #ff374145, #ff404c51, #ff4f5b58, #ffdacfa0, #ffdacfa0, #ffdacfa0, #ff2b3339, #ff2b3339, #ff4f5b58, #ff83c092, #ff4f5b58, #ff83c092, #ffe67e80, #ff2b3339, #ffdacfa0, #ff374145, #ffdacfa0, #804f5b58 -------------------------------------------------------------------------------- /.config/qt6ct/colors/Gruv.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ffebdbb2, #ff282828, #ff665c54, #ff3c3836, #ff504945, #ff665c54, #ffebdbb2, #ffebdbb2, #ffebdbb2, #ff282828, #ff282828, #ff665c54, #ff83a598, #ff282828, #ff83a598, #fffb4934, #ff282828, #ffebdbb2, #ff3c3836, #ffebdbb2, #80665c54 3 | disabled_colors=#ff665c54, #ff282828, #ff665c54, #ff3c3836, #ff504945, #ff665c54, #ff665c54, #ff665c54, #ff665c54, #ff282828, #ff282828, #ff665c54, #ff83a598, #ff504945, #ff83a598, #fffb4934, #ff282828, #ffebdbb2, #ff3c3836, #ffebdbb2, #80665c54 4 | inactive_colors=#ffebdbb2, #ff282828, #ff665c54, #ff3c3836, #ff504945, #ff665c54, #ffebdbb2, #ffebdbb2, #ffebdbb2, #ff282828, #ff282828, #ff665c54, #ff83a598, #ff665c54, #ff83a598, #fffb4934, #ff282828, #ffebdbb2, #ff3c3836, #ffebdbb2, #80665c54 5 | -------------------------------------------------------------------------------- /.config/qt6ct/colors/Nord.conf: -------------------------------------------------------------------------------- 1 | [ColorScheme] 2 | active_colors=#ffd8dee9, #ff2e3440, #ff4c566a, #ff3b4252, #ff434c5e, #ff4c566a, #ffd8dee9, #ffd8dee9, #ffd8dee9, #ff2e3440, #ff2e3440, #ff4c566a, #ff88c0d0, #ff2e3440, #ff88c0d0, #ffbf616a, #ff2e3440, #ffd8dee9, #ff3b4252, #ffd8dee9, #804c566a 3 | disabled_colors=#ff4c566a, #ff2e3440, #ff4c566a, #ff3b4252, #ff434c5e, #ff4c566a, #ff4c566a, #ff4c566a, #ff4c566a, #ff2e3440, #ff2e3440, #ff4c566a, #ff88c0d0, #ff434c5e, #ff88c0d0, #ffbf616a, #ff2e3440, #ffd8dee9, #ff3b4252, #ffd8dee9, #804c566a 4 | inactive_colors=#ffd8dee9, #ff2e3440, #ff4c566a, #ff3b4252, #ff434c5e, #ff4c566a, #ffd8dee9, #ffd8dee9, #ffd8dee9, #ff2e3440, #ff2e3440, #ff4c566a, #ff88c0d0, #ff4c566a, #ff88c0d0, #ffbf616a, #ff2e3440, #ffd8dee9, #ff3b4252, #ffd8dee9, #804c566a 5 | -------------------------------------------------------------------------------- /.config/qt6ct/qt6ct.conf: -------------------------------------------------------------------------------- 1 | [Appearance] 2 | color_scheme_path=/home/ayu/.config/qt6ct/colors/Everblush.conf 3 | custom_palette=false 4 | icon_theme=BeautyDream 5 | standard_dialogs=default 6 | style=kvantum 7 | 8 | [Fonts] 9 | fixed="IBM Plex Sans Light,10,-1,5,300,1,0,0,0,0,0,0,0,0,0,1,Bold" 10 | general="IBM Plex Sans,10,-1,5,700,0,0,0,0,0,0,0,0,0,0,1,Bold" 11 | 12 | [Interface] 13 | activate_item_on_single_click=1 14 | buttonbox_layout=0 15 | cursor_flash_time=1000 16 | dialog_buttons_have_icons=0 17 | double_click_interval=400 18 | gui_effects=General, AnimateMenu, AnimateCombo, AnimateTooltip, AnimateToolBox 19 | keyboard_scheme=2 20 | menus_have_icons=false 21 | show_shortcuts_in_context_menus=true 22 | stylesheets=@Invalid() 23 | toolbutton_style=4 24 | underline_shortcut=2 25 | wheel_scroll_lines=4 26 | 27 | [SettingsWindow] 28 | geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\0\0\0\x2\xde\0\0\x2\x95\0\0\0\0\0\0\0\0\0\0\x2\xde\0\0\x2\x95\0\0\0\0\x2\0\0\0\a\x80\0\0\0\0\0\0\0\0\0\0\x2\xde\0\0\x2\x95) 29 | 30 | [Troubleshooting] 31 | force_raster_widgets=1 32 | ignored_applications=@Invalid() 33 | -------------------------------------------------------------------------------- /.config/rofi/assets/style_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/rofi/assets/style_1.png -------------------------------------------------------------------------------- /.config/rofi/assets/style_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/rofi/assets/style_2.png -------------------------------------------------------------------------------- /.config/rofi/assets/style_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/rofi/assets/style_3.png -------------------------------------------------------------------------------- /.config/rofi/assets/style_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/rofi/assets/style_4.png -------------------------------------------------------------------------------- /.config/rofi/themes/dracula.rasi: -------------------------------------------------------------------------------- 1 | * { 2 | main-bg:rgb(29, 30, 39); 3 | main-fg: #f8f8f2ff; 4 | main-br:rgb(98, 87, 112); 5 | select-bg: #44475aff; 6 | select-fg: #f8f8f2ff; 7 | separatorcolor: transparent; 8 | border-color: transparent; 9 | } 10 | -------------------------------------------------------------------------------- /.config/rofi/themes/everblush.rasi: -------------------------------------------------------------------------------- 1 | * { 2 | main-bg: #141b1eff; 3 | main-fg: #dadadaff; 4 | main-br: #232a2dff; 5 | select-bg: #232a2dff; 6 | select-fg: #dadadaff; 7 | separatorcolor: transparent; 8 | border-color: transparent; 9 | } -------------------------------------------------------------------------------- /.config/rofi/themes/everforest.rasi: -------------------------------------------------------------------------------- 1 | * { 2 | main-bg: #232a2eff; 3 | main-fg: #d3c6aaff; 4 | main-br: #293136ff; 5 | select-bg: #343f44ff; 6 | select-fg: #d3c6aaff; 7 | separatorcolor: transparent; 8 | border-color: transparent; 9 | } 10 | -------------------------------------------------------------------------------- /.config/rofi/themes/gruv.rasi: -------------------------------------------------------------------------------- 1 | * { 2 | main-bg: #282828ff; 3 | main-fg: #ffffffff; 4 | main-br: #665c54ff; 5 | select-bg: #1d2021ff; 6 | select-fg: #000000ff; 7 | separatorcolor: transparent; 8 | border-color: transparent; 9 | } 10 | -------------------------------------------------------------------------------- /.config/rofi/themes/nord.rasi: -------------------------------------------------------------------------------- 1 | * { 2 | main-bg: #1d2129ff; 3 | main-fg: #cdd6f4ff; 4 | main-br: #4c566aff; 5 | select-bg: #4c566aff; 6 | select-fg: #000000ff; 7 | separatorcolor: transparent; 8 | border-color: transparent; 9 | } 10 | -------------------------------------------------------------------------------- /.config/swww/dracula/dracula rach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/dracula/dracula rach.png -------------------------------------------------------------------------------- /.config/swww/dracula/old library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/dracula/old library.png -------------------------------------------------------------------------------- /.config/swww/dracula/planet001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/dracula/planet001.png -------------------------------------------------------------------------------- /.config/swww/dracula/plants-foliage-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/dracula/plants-foliage-dark.jpg -------------------------------------------------------------------------------- /.config/swww/dracula/rosemary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/dracula/rosemary.png -------------------------------------------------------------------------------- /.config/swww/dracula/sexy arch .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/dracula/sexy arch .png -------------------------------------------------------------------------------- /.config/swww/everblush/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/008.png -------------------------------------------------------------------------------- /.config/swww/everblush/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/009.png -------------------------------------------------------------------------------- /.config/swww/everblush/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/010.png -------------------------------------------------------------------------------- /.config/swww/everblush/arch everblush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/arch everblush.png -------------------------------------------------------------------------------- /.config/swww/everblush/birdseye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/birdseye.jpg -------------------------------------------------------------------------------- /.config/swww/everblush/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/plant.png -------------------------------------------------------------------------------- /.config/swww/everblush/retro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/retro.png -------------------------------------------------------------------------------- /.config/swww/everblush/tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everblush/tech.png -------------------------------------------------------------------------------- /.config/swww/everforest/NierAutomata2BAlt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everforest/NierAutomata2BAlt.jpg -------------------------------------------------------------------------------- /.config/swww/everforest/aerial city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everforest/aerial city.png -------------------------------------------------------------------------------- /.config/swww/everforest/arch baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everforest/arch baby.png -------------------------------------------------------------------------------- /.config/swww/everforest/everforest firewatch .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everforest/everforest firewatch .png -------------------------------------------------------------------------------- /.config/swww/everforest/forest_stairs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everforest/forest_stairs.jpg -------------------------------------------------------------------------------- /.config/swww/everforest/hintergrund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everforest/hintergrund.png -------------------------------------------------------------------------------- /.config/swww/everforest/retro setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/everforest/retro setup.png -------------------------------------------------------------------------------- /.config/swww/gruv/Perfect Wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/gruv/Perfect Wall.png -------------------------------------------------------------------------------- /.config/swww/gruv/ThingiesCafe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/gruv/ThingiesCafe.jpg -------------------------------------------------------------------------------- /.config/swww/gruv/astronaut-minimalism-gruvbox-simple-background-2302918-wallhere.com.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/gruv/astronaut-minimalism-gruvbox-simple-background-2302918-wallhere.com.jpg -------------------------------------------------------------------------------- /.config/swww/gruv/gruv retro setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/gruv/gruv retro setup.png -------------------------------------------------------------------------------- /.config/swww/gruv/gruv-kanji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/gruv/gruv-kanji.png -------------------------------------------------------------------------------- /.config/swww/gruv/gruv-mistakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/gruv/gruv-mistakes.png -------------------------------------------------------------------------------- /.config/swww/gruv/satellite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/gruv/satellite.jpg -------------------------------------------------------------------------------- /.config/swww/nord/archlinux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/nord/archlinux.png -------------------------------------------------------------------------------- /.config/swww/nord/booo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/nord/booo.png -------------------------------------------------------------------------------- /.config/swww/nord/mist_forest_nord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/nord/mist_forest_nord.jpg -------------------------------------------------------------------------------- /.config/swww/nord/nord dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/nord/nord dark.png -------------------------------------------------------------------------------- /.config/swww/nord/nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/nord/nord.png -------------------------------------------------------------------------------- /.config/swww/nord/visual-coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/swww/nord/visual-coding.png -------------------------------------------------------------------------------- /.config/swww/wall.ctl: -------------------------------------------------------------------------------- 1 | source-file|everblush|/home/ayu/.config/swww/everblush/retro vibe.png 2 | -------------------------------------------------------------------------------- /.config/waybar/colors/dracula.css: -------------------------------------------------------------------------------- 1 | @define-color bg #21232b; 2 | @define-color container #282A36; 3 | 4 | @define-color fg #f9f9f4; 5 | @define-color fg-1 #ffffff; 6 | @define-color fg-3 #666e73; 7 | 8 | @define-color arch #8BE9FD; 9 | @define-color memory #50c7f8; 10 | @define-color themes #FFB86C; 11 | @define-color weather #50FA7B; 12 | 13 | @define-color workspace #F8F8F2; 14 | @define-color workspace-active #F1FA8C; 15 | 16 | @define-color slider #383e47; 17 | @define-color slider-highlight #8BE9FD; 18 | @define-color calender #50FA7B; 19 | @define-color clock #d3baf7; 20 | @define-color power #FF5555; 21 | 22 | @define-color logout #f29dc8; 23 | @define-color reboot #f89d92; 24 | 25 | /* Currently not in used */ 26 | 27 | @define-color playerctl-1 #e2c992; 28 | @define-color playerctl-2 #eba98e; 29 | @define-color network #dcd1bb; 30 | @define-color updates #cdedad; -------------------------------------------------------------------------------- /.config/waybar/colors/everblush.css: -------------------------------------------------------------------------------- 1 | @define-color bg #111617; 2 | @define-color container #1e2326; 3 | 4 | @define-color fg #dadada; 5 | @define-color fg-1 #ffffff; 6 | 7 | @define-color arch #5ddef5; 8 | @define-color memory #18b3f5; 9 | @define-color themes #c4e88b; 10 | @define-color weather #e497f7; 11 | 12 | @define-color workspace #b3b9b8; 13 | @define-color workspace-active #67b0e8; 14 | 15 | @define-color slider #3b392e; 16 | @define-color slider-highlight #e5c76b; 17 | @define-color calender #bfe386; 18 | @define-color clock #edafe2; 19 | @define-color power #d65a5a; 20 | 21 | @define-color logout #f29dc8; 22 | @define-color reboot #f89d92; -------------------------------------------------------------------------------- /.config/waybar/colors/everforest.css: -------------------------------------------------------------------------------- 1 | @define-color bg #181C1E; 2 | @define-color container #1e2326; 3 | 4 | @define-color fg #f8f8f2; 5 | @define-color fg-1 #ffffff; 6 | 7 | @define-color arch #5ddef5; 8 | @define-color memory #18b3f5; 9 | @define-color themes #fcc383; 10 | @define-color weather #bfe386; 11 | 12 | @define-color workspace #596965; 13 | @define-color workspace-active #89ccc3; 14 | 15 | @define-color slider #343b39; 16 | @define-color slider-highlight #a7c080; 17 | @define-color calender #bfe386; 18 | @define-color clock #edafe2; 19 | @define-color power #d65a5a; 20 | 21 | @define-color logout #f29dc8; 22 | @define-color reboot #f89d92; -------------------------------------------------------------------------------- /.config/waybar/colors/gruv.css: -------------------------------------------------------------------------------- 1 | 2 | @define-color bg #202020; 3 | @define-color container #242424; 4 | 5 | @define-color fg #ffffff; 6 | @define-color fg-1 #ffffff; 7 | 8 | @define-color arch #a1c9ba; 9 | @define-color memory #61b6ba; 10 | @define-color themes #f28019; 11 | @define-color weather #fabd2f; 12 | 13 | @define-color workspace #a89984; 14 | @define-color workspace-active #fbf1c7; 15 | 16 | @define-color slider #3b343a; 17 | @define-color slider-highlight #d3869b; 18 | @define-color calender #b8bb26; 19 | @define-color clock #61b6ba; 20 | @define-color power #fb4934; 21 | 22 | @define-color logout #f29dc8; 23 | @define-color reboot #f89d92; -------------------------------------------------------------------------------- /.config/waybar/colors/nord.css: -------------------------------------------------------------------------------- 1 | @define-color bg #1d2129; 2 | @define-color container #2e3440; 3 | 4 | @define-color fg #d8dee9; 5 | @define-color fg-1 #ffffff; 6 | 7 | @define-color arch #a9cef5; 8 | @define-color memory #7ba3d4; 9 | @define-color themes #e0afd7; 10 | @define-color weather #c7eda8; 11 | 12 | @define-color workspace #596378; 13 | @define-color workspace-active #88c0d0; 14 | 15 | @define-color slider #393b34; 16 | @define-color slider-highlight #ebcb8b; 17 | @define-color calender #a4dedd; 18 | @define-color clock #c7eda8; 19 | @define-color power #ed7b86; 20 | 21 | @define-color logout #ebcb8b; 22 | @define-color reboot #e09c87; 23 | -------------------------------------------------------------------------------- /.config/wlogout/colors/dracula.css: -------------------------------------------------------------------------------- 1 | @define-color bar-bg rgba(0, 0, 0, 0); 2 | 3 | @define-color main-bg #282a36; 4 | @define-color main-fg #f8f8f2; 5 | 6 | @define-color focus-bg #44475a; 7 | @define-color focus-fg #f8f8f2; 8 | 9 | @define-color hvr-bg #896fad; 10 | @define-color hvr-fg #000000; 11 | -------------------------------------------------------------------------------- /.config/wlogout/colors/everblush.css: -------------------------------------------------------------------------------- 1 | @define-color bar-bg rgba(0, 0, 0, 0); 2 | 3 | @define-color main-bg #141b1e; 4 | @define-color main-fg #dadada; 5 | 6 | @define-color focus-bg #232a2d; 7 | @define-color focus-fg #dadada; 8 | 9 | @define-color hvr-bg #e57474; 10 | @define-color hvr-fg #b3b9b8; -------------------------------------------------------------------------------- /.config/wlogout/colors/everforest.css: -------------------------------------------------------------------------------- 1 | @define-color bar-bg rgba(0, 0, 0, 0); 2 | 3 | @define-color main-bg #232a2e; 4 | @define-color main-fg #d3c6aa; 5 | 6 | @define-color focus-bg #343f44; 7 | @define-color focus-fg #d3c6aa; 8 | 9 | @define-color hvr-bg #384b55; 10 | @define-color hvr-fg #000000; 11 | -------------------------------------------------------------------------------- /.config/wlogout/colors/gruv.css: -------------------------------------------------------------------------------- 1 | @define-color bar-bg rgba(0, 0, 0, 0); 2 | 3 | @define-color main-bg #1d2021; 4 | @define-color main-fg #ebdbb2; 5 | 6 | @define-color focus-bg #83a598; 7 | @define-color focus-fg #fbf1c7; 8 | 9 | @define-color hvr-bg #b16286; 10 | @define-color hvr-fg #000000; 11 | -------------------------------------------------------------------------------- /.config/wlogout/colors/nord.css: -------------------------------------------------------------------------------- 1 | @define-color bar-bg rgba(0, 0, 0, 0); 2 | 3 | @define-color main-bg #2e3440; 4 | @define-color main-fg #F8F8F2; 5 | 6 | @define-color focus-bg #3b4252; 7 | @define-color focus-fg #F8F8F2; 8 | 9 | @define-color hvr-bg #4c566a; 10 | @define-color hvr-fg #000000; 11 | -------------------------------------------------------------------------------- /.config/wlogout/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/wlogout/icons/lock.png -------------------------------------------------------------------------------- /.config/wlogout/icons/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/wlogout/icons/logout.png -------------------------------------------------------------------------------- /.config/wlogout/icons/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/wlogout/icons/reboot.png -------------------------------------------------------------------------------- /.config/wlogout/icons/shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/wlogout/icons/shutdown.png -------------------------------------------------------------------------------- /.config/wlogout/icons/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/wlogout/icons/sleep.png -------------------------------------------------------------------------------- /.config/wlogout/icons/suspend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.config/wlogout/icons/suspend.png -------------------------------------------------------------------------------- /.config/wlogout/layout: -------------------------------------------------------------------------------- 1 | { 2 | "label" : "lock", 3 | "action" : "hyprlock", 4 | "text" : "Lock", 5 | "keybind" : "l" 6 | } 7 | 8 | { 9 | "label" : "logout", 10 | "action" : "hyprctl dispatch exit 0", 11 | "text" : "Logout", 12 | "keybind" : "e" 13 | } 14 | 15 | { 16 | "label" : "suspend", 17 | "action" : "systemctl suspend", 18 | "text" : "Suspend", 19 | "keybind" : "u" 20 | } 21 | 22 | { 23 | "label" : "shutdown", 24 | "action" : "systemctl poweroff", 25 | "text" : "Shutdown", 26 | "keybind" : "s" 27 | } 28 | 29 | { 30 | "label" : "hibernate", 31 | "action" : "systemctl hibernate", 32 | "text" : "Hibernate", 33 | "keybind" : "h" 34 | } 35 | 36 | { 37 | "label" : "reboot", 38 | "action" : "systemctl reboot", 39 | "text" : "Reboot", 40 | "keybind" : "r" 41 | } 42 | -------------------------------------------------------------------------------- /.config/xsettingsd/xsettingsd.conf: -------------------------------------------------------------------------------- 1 | Net/ThemeName "Everblush" 2 | Net/IconThemeName "BeautyDream" 3 | Gtk/CursorThemeName "Bibata-Modern-Ice" 4 | Net/EnableEventSounds 1 5 | EnableInputFeedbackSounds 0 6 | Xft/Antialias 1 7 | Xft/Hinting 1 8 | Xft/HintStyle "hintfull" 9 | Xft/RGBA "rgb" 10 | -------------------------------------------------------------------------------- /.gtkrc-2.0: -------------------------------------------------------------------------------- 1 | # DO NOT EDIT! This file will be overwritten by nwg-look. 2 | # Any customization should be done in ~/.gtkrc-2.0.mine instead. 3 | 4 | include "/home/ayu/.gtkrc-2.0.mine" 5 | gtk-theme-name="Everblush" 6 | gtk-icon-theme-name="BeautyDream" 7 | gtk-font-name="IBM Plex Sans Medium 10" 8 | gtk-cursor-theme-name="Bibata-Modern-Ice" 9 | gtk-cursor-theme-size=20 10 | gtk-toolbar-style=GTK_TOOLBAR_ICONS 11 | gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR 12 | gtk-button-images=0 13 | gtk-menu-images=0 14 | gtk-enable-event-sounds=1 15 | gtk-enable-input-feedback-sounds=0 16 | gtk-xft-antialias=1 17 | gtk-xft-hinting=1 18 | gtk-xft-hintstyle="hintfull" 19 | gtk-xft-rgba="rgb" 20 | -------------------------------------------------------------------------------- /.icons/BeautyDream-20240521180603.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.icons/BeautyDream-20240521180603.tar.gz -------------------------------------------------------------------------------- /.icons/Bibata-Modern-Ice.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.icons/Bibata-Modern-Ice.tar.xz -------------------------------------------------------------------------------- /.icons/Nordzy-turquoise-dark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.icons/Nordzy-turquoise-dark.tar.gz -------------------------------------------------------------------------------- /.icons/Readme.txt: -------------------------------------------------------------------------------- 1 | 2 | Extract all Icons here 3 | 4 | Few things to check before : 5 | 1. Match extracted icons name to defined icons name in hypr/themes/themes.conf (themes.conf will be your choosen theme name) 6 | 2. Some icons packs may not works, to fix this pls update icon packs, check out on pling store. 7 | -------------------------------------------------------------------------------- /.icons/Tela-circle-dracula.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.icons/Tela-circle-dracula.tar.xz -------------------------------------------------------------------------------- /.icons/Zafiro-Nord-Black.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.icons/Zafiro-Nord-Black.tar.xz -------------------------------------------------------------------------------- /.icons/default/index.theme: -------------------------------------------------------------------------------- 1 | # This file is written by nwg-look. Do not edit. 2 | [Icon Theme] 3 | Name=Default 4 | Comment=Default Cursor Theme 5 | Inherits=Bibata-Modern-Ice 6 | -------------------------------------------------------------------------------- /.icons/gruvbox-plus-icon-pack.6.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.icons/gruvbox-plus-icon-pack.6.1.1.tar.gz -------------------------------------------------------------------------------- /.themes/Dracula.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.themes/Dracula.tar.xz -------------------------------------------------------------------------------- /.themes/Ever-Blush.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.themes/Ever-Blush.zip -------------------------------------------------------------------------------- /.themes/Everforest-Dark-Soft-B-MB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.themes/Everforest-Dark-Soft-B-MB.zip -------------------------------------------------------------------------------- /.themes/Gruvbox-Dark-B-LB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.themes/Gruvbox-Dark-B-LB.zip -------------------------------------------------------------------------------- /.themes/Nordic-darker.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/.themes/Nordic-darker.tar.xz -------------------------------------------------------------------------------- /.themes/Readme.txt: -------------------------------------------------------------------------------- 1 | Extract all themes here (Match extracted files to theme names below ) 2 | 3 | 1. Dracula 4 | 2. Gruvbox-Dark 5 | 3. Nordic-darker 6 | 4. Everforest-Dark-Soft 7 | 5. Everblush 8 | -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- 1 | # Path to your oh-my-zsh installation. 2 | ZSH=/usr/share/oh-my-zsh/ 3 | 4 | # Theme 5 | 6 | local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" 7 | local user_host="%B%(!.%{$fg[red]%}.%{$fg[green]%})%n@%m%{$reset_color%} " 8 | local user_symbol='%(!.#.$)' 9 | local current_dir="%B%{$fg[blue]%}%~ %{$reset_color%}" 10 | local conda_prompt='$(conda_prompt_info)' 11 | 12 | local vcs_branch='$(git_prompt_info)$(hg_prompt_info)' 13 | local rvm_ruby='$(ruby_prompt_info)' 14 | local venv_prompt='$(virtualenv_prompt_info)' 15 | if [[ "${plugins[@]}" =~ 'kube-ps1' ]]; then 16 | local kube_prompt='$(kube_ps1)' 17 | else 18 | local kube_prompt='' 19 | fi 20 | 21 | ZSH_THEME_RVM_PROMPT_OPTIONS="i v g" 22 | 23 | PROMPT="╭─${conda_prompt}${user_host}${current_dir}${rvm_ruby}${vcs_branch}${venv_prompt}${kube_prompt} 24 | ╰─%B${user_symbol}%b " 25 | RPROMPT="%B${return_code}%b" 26 | 27 | ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹" 28 | ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" 29 | ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$fg[yellow]%}" 30 | ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[yellow]%}" 31 | 32 | ZSH_THEME_HG_PROMPT_PREFIX="$ZSH_THEME_GIT_PROMPT_PREFIX" 33 | ZSH_THEME_HG_PROMPT_SUFFIX="$ZSH_THEME_GIT_PROMPT_SUFFIX" 34 | ZSH_THEME_HG_PROMPT_DIRTY="$ZSH_THEME_GIT_PROMPT_DIRTY" 35 | ZSH_THEME_HG_PROMPT_CLEAN="$ZSH_THEME_GIT_PROMPT_CLEAN" 36 | 37 | ZSH_THEME_RUBY_PROMPT_PREFIX="%{$fg[red]%}‹" 38 | ZSH_THEME_RUBY_PROMPT_SUFFIX="› %{$reset_color%}" 39 | 40 | ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX="%{$fg[green]%}‹" 41 | ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX="› %{$reset_color%}" 42 | ZSH_THEME_VIRTUALENV_PREFIX="$ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX" 43 | ZSH_THEME_VIRTUALENV_SUFFIX="$ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX" 44 | 45 | 46 | -------------------------------------------------------------------------------- /fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-Bold.ttf -------------------------------------------------------------------------------- /fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-Italic.ttf -------------------------------------------------------------------------------- /fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Atkinson_Hyperlegible/AtkinsonHyperlegible-Regular.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFont-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFont-Bold.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFont-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFont-Light.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFont-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFont-Medium.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFont-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFont-Regular.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFont-Retina.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFont-Retina.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFont-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFont-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontMono-Light.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontMono-Medium.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontMono-Retina.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontMono-Retina.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontMono-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontPropo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontPropo-Bold.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontPropo-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontPropo-Light.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontPropo-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontPropo-Medium.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontPropo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontPropo-Regular.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontPropo-Retina.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontPropo-Retina.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/FiraCodeNerdFontPropo-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/FiraCode/FiraCodeNerdFontPropo-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/FiraCode/README.md: -------------------------------------------------------------------------------- 1 | # Nerd Fonts 2 | 3 | This is an archived font from the Nerd Fonts release v3.1.1. 4 | 5 | For more information see: 6 | * https://github.com/ryanoasis/nerd-fonts/ 7 | * https://github.com/ryanoasis/nerd-fonts/releases/latest/ 8 | 9 | # Fira Code 10 | 11 | **Fira Code** is a free monospaced font with programming ligatures. 12 | 13 | For more information have a look at the upstream website: https://github.com/tonsky/FiraCode 14 | 15 | Version: 6.2 16 | 17 | ## Which font? 18 | 19 | ### TL;DR 20 | 21 | * Pick your font family: 22 | * If you are limited to monospaced fonts (because of your terminal, etc) then pick a font with `Nerd Font Mono` (or `NFM`). 23 | * If you want to have bigger icons (usually around 1.5 normal letters wide) pick a font without `Mono` i.e. `Nerd Font` (or `NF`). Most terminals support this, but ymmv. 24 | * If you work in a proportional context (GUI elements or edit a presentation etc) pick a font with `Nerd Font Propo` (or `NFP`). 25 | 26 | ### Ligatures 27 | 28 | Ligatures are generally preserved in the patched fonts. 29 | Nerd Fonts `v2.0.0` had no ligatures in the `Nerd Font Mono` fonts, this has been dropped with `v2.1.0`. 30 | If you have a ligature-aware terminal and don't want ligatures you can (usually) disable them in the terminal settings. 31 | 32 | ### Explanation 33 | 34 | Once you narrow down your font choice of family (`Droid Sans`, `Inconsolata`, etc) and style (`bold`, `italic`, etc) you have 2 main choices: 35 | 36 | #### `Option 1: Download already patched font` 37 | 38 | * For a stable version download a font package from the [release page](https://github.com/ryanoasis/nerd-fonts/releases) 39 | * Or download the development version from the folders here 40 | 41 | #### `Option 2: Patch your own font` 42 | 43 | * Patch your own variations with the various options provided by the font patcher (i.e. not include all symbols for smaller font size) 44 | 45 | For more information see: [The FAQ](https://github.com/ryanoasis/nerd-fonts/wiki/FAQ-and-Troubleshooting#which-font) 46 | 47 | [SIL-RFN]:http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web_fonts_and_RFNs#14cbfd4a 48 | 49 | -------------------------------------------------------------------------------- /fonts/Grechen_Fuemen/GrechenFuemen-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Grechen_Fuemen/GrechenFuemen-Regular.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-Light.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-Thin.ttf -------------------------------------------------------------------------------- /fonts/IBM_Plex_Sans/IBMPlexSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/IBM_Plex_Sans/IBMPlexSans-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/Inter/Inter-VariableFont_slnt,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Inter/Inter-VariableFont_slnt,wght.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/JetBrainsMono-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/JetBrainsMono-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/JetBrainsMono-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/JetBrainsMono-VariableFont_wght.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-Italic.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-Light.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-Medium.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-Thin.ttf -------------------------------------------------------------------------------- /fonts/JetBrains_Mono/static/JetBrainsMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/JetBrains_Mono/static/JetBrainsMono-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/Madness/Madness.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Madness/Madness.eot -------------------------------------------------------------------------------- /fonts/Madness/Madness.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Madness/Madness.ttf -------------------------------------------------------------------------------- /fonts/Madness/Madness.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Madness/Madness.woff -------------------------------------------------------------------------------- /fonts/MapleMono/MapleMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/MapleMono/MapleMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/MapleMono/MapleMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/MapleMono/MapleMono-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/MapleMono/MapleMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/MapleMono/MapleMono-Italic.ttf -------------------------------------------------------------------------------- /fonts/MapleMono/MapleMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/MapleMono/MapleMono-Light.ttf -------------------------------------------------------------------------------- /fonts/MapleMono/MapleMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/MapleMono/MapleMono-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/MapleMono/MapleMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/MapleMono/MapleMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/Monaspace/MonaspaceArgonVarVF[wght,wdth,slnt].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Monaspace/MonaspaceArgonVarVF[wght,wdth,slnt].ttf -------------------------------------------------------------------------------- /fonts/Monaspace/MonaspaceKryptonVarVF[wght,wdth,slnt].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Monaspace/MonaspaceKryptonVarVF[wght,wdth,slnt].ttf -------------------------------------------------------------------------------- /fonts/Monaspace/MonaspaceNeonVarVF[wght,wdth,slnt].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Monaspace/MonaspaceNeonVarVF[wght,wdth,slnt].ttf -------------------------------------------------------------------------------- /fonts/Monaspace/MonaspaceRadonVarVF[wght,wdth,slnt].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Monaspace/MonaspaceRadonVarVF[wght,wdth,slnt].ttf -------------------------------------------------------------------------------- /fonts/Monaspace/MonaspaceXenonVarVF[wght,wdth,slnt].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Monaspace/MonaspaceXenonVarVF[wght,wdth,slnt].ttf -------------------------------------------------------------------------------- /fonts/Mononoki/mononoki-Regular Nerd Font Complete Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Mononoki/mononoki-Regular Nerd Font Complete Mono.ttf -------------------------------------------------------------------------------- /fonts/Mononoki/mononoki-Regular Nerd Font Complete.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Mononoki/mononoki-Regular Nerd Font Complete.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-Black.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-Bold.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-Italic.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-Light.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-Medium.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-Regular.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/Nunito/Nunito-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/Nunito/Nunito-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Readme: -------------------------------------------------------------------------------- 1 | Just place these fonts in your ~/.local/share/fonts directory 2 | After then just update your font cache 3 | -------------------------------------------------------------------------------- /fonts/camomile/Camomile.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/camomile/Camomile.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.black-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.black-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.black.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.bold-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.bold-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.bold.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.extrabold-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.extrabold-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.extrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.extrabold.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.extralight-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.extralight-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.extralight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.extralight.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.fat-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.fat-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.fat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.fat.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.light-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.light-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.light.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.medium-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.medium-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.medium.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.regular.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.thin-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.thin-italic.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/florentia.thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/florentia-family/florentia.thin.ttf -------------------------------------------------------------------------------- /fonts/florentia-family/readme.txt: -------------------------------------------------------------------------------- 1 | Font downloaded from http://www.fontget.com 2 | 3 | To see how to install fonts go to https://www.fontget.com/help -------------------------------------------------------------------------------- /fonts/history-yenifer-font/HistoryYenifer-8M9JB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/history-yenifer-font/HistoryYenifer-8M9JB.ttf -------------------------------------------------------------------------------- /fonts/history-yenifer-font/info.txt: -------------------------------------------------------------------------------- 1 | license: Demo 2 | link: https://www.fontspace.com/history-yenifer-font-f102111 -------------------------------------------------------------------------------- /fonts/johanvaaler-font/Johanvaaler-7ql4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/Johanvaaler-7ql4.ttf -------------------------------------------------------------------------------- /fonts/johanvaaler-font/Johanvaaler-wZp6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/Johanvaaler-wZp6.ttf -------------------------------------------------------------------------------- /fonts/johanvaaler-font/JohanvaalerBold-mD45.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/JohanvaalerBold-mD45.ttf -------------------------------------------------------------------------------- /fonts/johanvaaler-font/JohanvaalerBolditalic-ddwZ.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/JohanvaalerBolditalic-ddwZ.ttf -------------------------------------------------------------------------------- /fonts/johanvaaler-font/JohanvaalerItalic-Pdn7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/JohanvaalerItalic-Pdn7.ttf -------------------------------------------------------------------------------- /fonts/johanvaaler-font/JohanvaalerSolid-Lvp3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/JohanvaalerSolid-Lvp3.ttf -------------------------------------------------------------------------------- /fonts/johanvaaler-font/JohanvaalerSolidbold-XRKG.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/JohanvaalerSolidbold-XRKG.ttf -------------------------------------------------------------------------------- /fonts/johanvaaler-font/info.txt: -------------------------------------------------------------------------------- 1 | license: Freeware, Non-Commercial 2 | link: https://www.fontspace.com/johanvaaler-font-f22898 -------------------------------------------------------------------------------- /fonts/johanvaaler-font/misc/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/johanvaaler-font/misc/License.txt -------------------------------------------------------------------------------- /fonts/syne-family/readme.txt: -------------------------------------------------------------------------------- 1 | Font downloaded from http://www.fontget.com 2 | 3 | To see how to install fonts go to https://www.fontget.com/help -------------------------------------------------------------------------------- /fonts/syne-family/syne.bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/syne-family/syne.bold.otf -------------------------------------------------------------------------------- /fonts/syne-family/syne.extra.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/syne-family/syne.extra.otf -------------------------------------------------------------------------------- /fonts/syne-family/syne.italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/syne-family/syne.italic.otf -------------------------------------------------------------------------------- /fonts/syne-family/syne.mono.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/syne-family/syne.mono.otf -------------------------------------------------------------------------------- /fonts/syne-family/syne.regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/syne-family/syne.regular.otf -------------------------------------------------------------------------------- /fonts/wind-sans-serif/readme.txt: -------------------------------------------------------------------------------- 1 | Font downloaded from http://www.fontget.com 2 | 3 | To see how to install fonts go to https://www.fontget.com/help -------------------------------------------------------------------------------- /fonts/wind-sans-serif/wind-sans-serif.regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ace-c/hyprenv/6291a76490806dedb2505188ce3b3d4f6ea6ebf8/fonts/wind-sans-serif/wind-sans-serif.regular.ttf --------------------------------------------------------------------------------