├── .github └── FUNDING.yml ├── CHANGELOGS.md ├── LICENSE.md ├── README.md ├── assets ├── Shiny-Dark-Icons.tar.gz ├── Shiny-Light-Icons.tar.gz ├── WofiEmoji.png ├── hyprland.desktop └── pavuExample.jpg ├── config ├── Thunar │ ├── accels.scm │ ├── renamerrc │ └── uca.xml ├── btop │ ├── btop.conf │ └── themes │ │ ├── catppuccin_frappe.theme │ │ ├── catppuccin_latte.theme │ │ ├── catppuccin_macchiato.theme │ │ └── catppuccin_mocha.theme ├── cava │ ├── config │ └── shaders │ │ ├── bar_spectrum.frag │ │ ├── normalized_bars.frag │ │ └── pass_through.vert ├── foot │ └── foot.ini ├── hypr │ ├── HelpFile.md │ ├── configs │ │ ├── ENVariables.conf │ │ ├── Execs.conf │ │ ├── Keybinds.conf │ │ ├── Monitors.conf │ │ └── WindowRules.conf │ ├── hyprland.conf │ ├── mako │ │ ├── config │ │ ├── icons │ │ │ ├── backup.png │ │ │ ├── battery-quarter-solid.svg │ │ │ ├── battery-status.png │ │ │ ├── brightness-100.png │ │ │ ├── brightness-20.png │ │ │ ├── brightness-40.png │ │ │ ├── brightness-60.png │ │ │ ├── brightness-80.png │ │ │ ├── dropper.png │ │ │ ├── microphone-mute.png │ │ │ ├── microphone.png │ │ │ ├── music.png │ │ │ ├── palette.png │ │ │ ├── picture.png │ │ │ ├── timer.png │ │ │ ├── uptime.png │ │ │ ├── volume-high.png │ │ │ ├── volume-low.png │ │ │ ├── volume-mid.png │ │ │ ├── volume-mute.png │ │ │ └── vpn.png │ │ └── styles │ │ │ ├── config-dark │ │ │ └── config-light │ ├── scripts │ │ ├── AirplaneMode.sh │ │ ├── AppAutoClose.sh │ │ ├── Brightness.sh │ │ ├── BrightnessKbd.sh │ │ ├── ChangeBlur.sh │ │ ├── ChangeLayout.sh │ │ ├── ChangeLayoutMenu.sh │ │ ├── ClipManager.sh │ │ ├── DarkLight-swaybg.sh │ │ ├── DarkLight.sh │ │ ├── GameMode.sh │ │ ├── Help.sh │ │ ├── LidSwitch.sh │ │ ├── LockScreen.sh │ │ ├── Mako.sh │ │ ├── PortalHyprlandArch.sh │ │ ├── QuickEdit.sh │ │ ├── ScreenShot.sh │ │ ├── Startup.sh │ │ ├── Sunset.sh │ │ ├── TouchPad.sh │ │ ├── Volume.sh │ │ ├── Wallpaper.sh │ │ ├── WallpaperSelect.sh │ │ ├── Waybar.sh │ │ ├── WaybarStyles.sh │ │ ├── Weather.py │ │ ├── Weather.sh │ │ ├── Wofi.sh │ │ ├── WofiBeats.sh │ │ ├── WofiBig.sh │ │ └── WofiEmoji.sh │ ├── swaylock │ │ └── config │ ├── themes │ │ ├── frappe.conf │ │ ├── latte.conf │ │ ├── macchiato.conf │ │ └── mocha.conf │ ├── waybar │ │ ├── config │ │ ├── configs │ │ │ ├── config-default │ │ │ ├── config-dual │ │ │ ├── config-gnome │ │ │ ├── config-plasma │ │ │ └── config-simple │ │ ├── modules │ │ ├── style.css │ │ └── style │ │ │ ├── dark-styles │ │ │ ├── style-dark-cat.css │ │ │ └── style-dark-mojave.css │ │ │ ├── style-b&w.css │ │ │ ├── style-default.css │ │ │ ├── style-default_alter.css │ │ │ ├── style-light.css │ │ │ ├── style-mauve.css │ │ │ ├── style-rgb.css │ │ │ └── style-simple.css │ └── wofi │ │ ├── WofiBig │ │ └── config │ │ ├── colors │ │ ├── config │ │ ├── configs │ │ ├── config-default │ │ ├── config-gnome │ │ └── config-plasma │ │ ├── style.css │ │ └── styles │ │ ├── style-dark.css │ │ └── style-light.css ├── swappy │ └── config ├── wlogout │ ├── layout │ └── style.css └── xfce4 │ ├── helpers.rc │ ├── panel │ └── whiskermenu-7.rc │ ├── terminal │ └── terminalrc │ ├── xfce4-screenshooter │ ├── xfce4-taskmanager.rc │ └── xfconf │ └── xfce-perchannel-xml │ ├── keyboards.xml │ ├── pointers.xml │ ├── thunar-volman.xml │ ├── thunar.xml │ ├── xfce4-appfinder.xml │ ├── xfce4-desktop.xml │ ├── xfce4-keyboard-shortcuts.xml │ ├── xfce4-notifyd.xml │ ├── xfce4-panel.xml │ ├── xfce4-power-manager.xml │ ├── xfce4-screensaver.xml │ ├── xfce4-session.xml │ ├── xfce4-settings-manager.xml │ ├── xfwm4.xml │ └── xsettings.xml ├── install-hyprland-v3 ├── screenshots ├── Dark-Mode-Catpuccin.png ├── Light-Mode-Catpuccin.png └── default.png └── wallpapers ├── Beach-Rock.jpg └── Dynamic-Wallpapers ├── Dark ├── Dessert_dark.jpg └── nature_dark.jpg └── Light ├── Dessert_light.jpg └── nature_light.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /CHANGELOGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/CHANGELOGS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/README.md -------------------------------------------------------------------------------- /assets/Shiny-Dark-Icons.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/assets/Shiny-Dark-Icons.tar.gz -------------------------------------------------------------------------------- /assets/Shiny-Light-Icons.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/assets/Shiny-Light-Icons.tar.gz -------------------------------------------------------------------------------- /assets/WofiEmoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/assets/WofiEmoji.png -------------------------------------------------------------------------------- /assets/hyprland.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/assets/hyprland.desktop -------------------------------------------------------------------------------- /assets/pavuExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/assets/pavuExample.jpg -------------------------------------------------------------------------------- /config/Thunar/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/Thunar/accels.scm -------------------------------------------------------------------------------- /config/Thunar/renamerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/Thunar/renamerrc -------------------------------------------------------------------------------- /config/Thunar/uca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/Thunar/uca.xml -------------------------------------------------------------------------------- /config/btop/btop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/btop/btop.conf -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_frappe.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/btop/themes/catppuccin_frappe.theme -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_latte.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/btop/themes/catppuccin_latte.theme -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_macchiato.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/btop/themes/catppuccin_macchiato.theme -------------------------------------------------------------------------------- /config/btop/themes/catppuccin_mocha.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/btop/themes/catppuccin_mocha.theme -------------------------------------------------------------------------------- /config/cava/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/cava/config -------------------------------------------------------------------------------- /config/cava/shaders/bar_spectrum.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/cava/shaders/bar_spectrum.frag -------------------------------------------------------------------------------- /config/cava/shaders/normalized_bars.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/cava/shaders/normalized_bars.frag -------------------------------------------------------------------------------- /config/cava/shaders/pass_through.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/cava/shaders/pass_through.vert -------------------------------------------------------------------------------- /config/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/foot/foot.ini -------------------------------------------------------------------------------- /config/hypr/HelpFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/HelpFile.md -------------------------------------------------------------------------------- /config/hypr/configs/ENVariables.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/configs/ENVariables.conf -------------------------------------------------------------------------------- /config/hypr/configs/Execs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/configs/Execs.conf -------------------------------------------------------------------------------- /config/hypr/configs/Keybinds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/configs/Keybinds.conf -------------------------------------------------------------------------------- /config/hypr/configs/Monitors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/configs/Monitors.conf -------------------------------------------------------------------------------- /config/hypr/configs/WindowRules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/configs/WindowRules.conf -------------------------------------------------------------------------------- /config/hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/hyprland.conf -------------------------------------------------------------------------------- /config/hypr/mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/config -------------------------------------------------------------------------------- /config/hypr/mako/icons/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/backup.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/battery-quarter-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/battery-quarter-solid.svg -------------------------------------------------------------------------------- /config/hypr/mako/icons/battery-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/battery-status.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/brightness-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/brightness-100.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/brightness-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/brightness-20.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/brightness-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/brightness-40.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/brightness-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/brightness-60.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/brightness-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/brightness-80.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/dropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/dropper.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/microphone-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/microphone-mute.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/microphone.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/music.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/palette.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/picture.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/timer.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/uptime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/uptime.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/volume-high.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/volume-low.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/volume-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/volume-mid.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/volume-mute.png -------------------------------------------------------------------------------- /config/hypr/mako/icons/vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/icons/vpn.png -------------------------------------------------------------------------------- /config/hypr/mako/styles/config-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/styles/config-dark -------------------------------------------------------------------------------- /config/hypr/mako/styles/config-light: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/mako/styles/config-light -------------------------------------------------------------------------------- /config/hypr/scripts/AirplaneMode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/AirplaneMode.sh -------------------------------------------------------------------------------- /config/hypr/scripts/AppAutoClose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/AppAutoClose.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Brightness.sh -------------------------------------------------------------------------------- /config/hypr/scripts/BrightnessKbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/BrightnessKbd.sh -------------------------------------------------------------------------------- /config/hypr/scripts/ChangeBlur.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/ChangeBlur.sh -------------------------------------------------------------------------------- /config/hypr/scripts/ChangeLayout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/ChangeLayout.sh -------------------------------------------------------------------------------- /config/hypr/scripts/ChangeLayoutMenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/ChangeLayoutMenu.sh -------------------------------------------------------------------------------- /config/hypr/scripts/ClipManager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/ClipManager.sh -------------------------------------------------------------------------------- /config/hypr/scripts/DarkLight-swaybg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/DarkLight-swaybg.sh -------------------------------------------------------------------------------- /config/hypr/scripts/DarkLight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/DarkLight.sh -------------------------------------------------------------------------------- /config/hypr/scripts/GameMode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/GameMode.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Help.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mousepad ~/.config/hypr/HelpFile.md 3 | -------------------------------------------------------------------------------- /config/hypr/scripts/LidSwitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/LidSwitch.sh -------------------------------------------------------------------------------- /config/hypr/scripts/LockScreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/LockScreen.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Mako.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Mako.sh -------------------------------------------------------------------------------- /config/hypr/scripts/PortalHyprlandArch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/PortalHyprlandArch.sh -------------------------------------------------------------------------------- /config/hypr/scripts/QuickEdit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/QuickEdit.sh -------------------------------------------------------------------------------- /config/hypr/scripts/ScreenShot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/ScreenShot.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Startup.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Sunset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Sunset.sh -------------------------------------------------------------------------------- /config/hypr/scripts/TouchPad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/TouchPad.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Volume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Volume.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Wallpaper.sh -------------------------------------------------------------------------------- /config/hypr/scripts/WallpaperSelect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/WallpaperSelect.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Waybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Waybar.sh -------------------------------------------------------------------------------- /config/hypr/scripts/WaybarStyles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/WaybarStyles.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Weather.py -------------------------------------------------------------------------------- /config/hypr/scripts/Weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Weather.sh -------------------------------------------------------------------------------- /config/hypr/scripts/Wofi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/Wofi.sh -------------------------------------------------------------------------------- /config/hypr/scripts/WofiBeats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/WofiBeats.sh -------------------------------------------------------------------------------- /config/hypr/scripts/WofiBig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/WofiBig.sh -------------------------------------------------------------------------------- /config/hypr/scripts/WofiEmoji.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/scripts/WofiEmoji.sh -------------------------------------------------------------------------------- /config/hypr/swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/swaylock/config -------------------------------------------------------------------------------- /config/hypr/themes/frappe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/themes/frappe.conf -------------------------------------------------------------------------------- /config/hypr/themes/latte.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/themes/latte.conf -------------------------------------------------------------------------------- /config/hypr/themes/macchiato.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/themes/macchiato.conf -------------------------------------------------------------------------------- /config/hypr/themes/mocha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/themes/mocha.conf -------------------------------------------------------------------------------- /config/hypr/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/config -------------------------------------------------------------------------------- /config/hypr/waybar/configs/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/configs/config-default -------------------------------------------------------------------------------- /config/hypr/waybar/configs/config-dual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/configs/config-dual -------------------------------------------------------------------------------- /config/hypr/waybar/configs/config-gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/configs/config-gnome -------------------------------------------------------------------------------- /config/hypr/waybar/configs/config-plasma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/configs/config-plasma -------------------------------------------------------------------------------- /config/hypr/waybar/configs/config-simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/configs/config-simple -------------------------------------------------------------------------------- /config/hypr/waybar/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/modules -------------------------------------------------------------------------------- /config/hypr/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/dark-styles/style-dark-cat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/dark-styles/style-dark-cat.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/dark-styles/style-dark-mojave.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/dark-styles/style-dark-mojave.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/style-b&w.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/style-b&w.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/style-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/style-default.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/style-default_alter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/style-default_alter.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/style-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/style-light.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/style-mauve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/style-mauve.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/style-rgb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/style-rgb.css -------------------------------------------------------------------------------- /config/hypr/waybar/style/style-simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/waybar/style/style-simple.css -------------------------------------------------------------------------------- /config/hypr/wofi/WofiBig/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/WofiBig/config -------------------------------------------------------------------------------- /config/hypr/wofi/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/colors -------------------------------------------------------------------------------- /config/hypr/wofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/config -------------------------------------------------------------------------------- /config/hypr/wofi/configs/config-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/configs/config-default -------------------------------------------------------------------------------- /config/hypr/wofi/configs/config-gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/configs/config-gnome -------------------------------------------------------------------------------- /config/hypr/wofi/configs/config-plasma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/configs/config-plasma -------------------------------------------------------------------------------- /config/hypr/wofi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/style.css -------------------------------------------------------------------------------- /config/hypr/wofi/styles/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/styles/style-dark.css -------------------------------------------------------------------------------- /config/hypr/wofi/styles/style-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/hypr/wofi/styles/style-light.css -------------------------------------------------------------------------------- /config/swappy/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/swappy/config -------------------------------------------------------------------------------- /config/wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/wlogout/layout -------------------------------------------------------------------------------- /config/wlogout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/wlogout/style.css -------------------------------------------------------------------------------- /config/xfce4/helpers.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/helpers.rc -------------------------------------------------------------------------------- /config/xfce4/panel/whiskermenu-7.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/panel/whiskermenu-7.rc -------------------------------------------------------------------------------- /config/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /config/xfce4/xfce4-screenshooter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfce4-screenshooter -------------------------------------------------------------------------------- /config/xfce4/xfce4-taskmanager.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfce4-taskmanager.rc -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/keyboards.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/pointers.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/thunar-volman.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-appfinder.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfce4-settings-manager.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml -------------------------------------------------------------------------------- /install-hyprland-v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/install-hyprland-v3 -------------------------------------------------------------------------------- /screenshots/Dark-Mode-Catpuccin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/screenshots/Dark-Mode-Catpuccin.png -------------------------------------------------------------------------------- /screenshots/Light-Mode-Catpuccin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/screenshots/Light-Mode-Catpuccin.png -------------------------------------------------------------------------------- /screenshots/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/screenshots/default.png -------------------------------------------------------------------------------- /wallpapers/Beach-Rock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/wallpapers/Beach-Rock.jpg -------------------------------------------------------------------------------- /wallpapers/Dynamic-Wallpapers/Dark/Dessert_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/wallpapers/Dynamic-Wallpapers/Dark/Dessert_dark.jpg -------------------------------------------------------------------------------- /wallpapers/Dynamic-Wallpapers/Dark/nature_dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/wallpapers/Dynamic-Wallpapers/Dark/nature_dark.jpg -------------------------------------------------------------------------------- /wallpapers/Dynamic-Wallpapers/Light/Dessert_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/wallpapers/Dynamic-Wallpapers/Light/Dessert_light.jpg -------------------------------------------------------------------------------- /wallpapers/Dynamic-Wallpapers/Light/nature_light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaKooLit/Hyprland-v3/HEAD/wallpapers/Dynamic-Wallpapers/Light/nature_light.jpg --------------------------------------------------------------------------------