├── README.md ├── extras ├── hyprland.desktop ├── starship.toml └── start-hypr ├── hypr ├── hyprland.conf ├── rog-g15-strix-2021-binds.conf ├── scripts │ ├── bgaction │ └── xdg-portal-hyprland ├── wallpaper-dark.jpg └── wallpaper.jpg ├── kitty ├── kitty.conf └── mocha.conf ├── mako └── config ├── sdt ├── Assets │ ├── Hibernate.svgz │ ├── Reboot.svgz │ ├── Shutdown.svgz │ ├── Suspend.svgz │ └── User.svgz ├── Backgrounds │ ├── wallpaper-dark.jpg │ └── wallpaper.jpg ├── Components │ ├── Clock.qml │ ├── Input.qml │ ├── LoginForm.qml │ ├── SessionButton.qml │ ├── SystemButtons.qml │ ├── UserList.qml │ └── VirtualKeyboard.qml ├── Main.qml ├── metadata.desktop ├── theme.conf └── wallpaper.jpg ├── set-hypr ├── swaylock └── config ├── waybar ├── config.jsonc ├── scripts │ ├── baraction │ ├── update-sys │ └── waybar-wttr.py ├── style.css └── style │ ├── style-dark.css │ └── style.css ├── wlogout └── layout └── wofi ├── config ├── style.css └── style ├── style-dark.css └── style.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/README.md -------------------------------------------------------------------------------- /extras/hyprland.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/extras/hyprland.desktop -------------------------------------------------------------------------------- /extras/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/extras/starship.toml -------------------------------------------------------------------------------- /extras/start-hypr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/extras/start-hypr -------------------------------------------------------------------------------- /hypr/hyprland.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/hypr/hyprland.conf -------------------------------------------------------------------------------- /hypr/rog-g15-strix-2021-binds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/hypr/rog-g15-strix-2021-binds.conf -------------------------------------------------------------------------------- /hypr/scripts/bgaction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/hypr/scripts/bgaction -------------------------------------------------------------------------------- /hypr/scripts/xdg-portal-hyprland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/hypr/scripts/xdg-portal-hyprland -------------------------------------------------------------------------------- /hypr/wallpaper-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/hypr/wallpaper-dark.jpg -------------------------------------------------------------------------------- /hypr/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/hypr/wallpaper.jpg -------------------------------------------------------------------------------- /kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/kitty/kitty.conf -------------------------------------------------------------------------------- /kitty/mocha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/kitty/mocha.conf -------------------------------------------------------------------------------- /mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/mako/config -------------------------------------------------------------------------------- /sdt/Assets/Hibernate.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Assets/Hibernate.svgz -------------------------------------------------------------------------------- /sdt/Assets/Reboot.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Assets/Reboot.svgz -------------------------------------------------------------------------------- /sdt/Assets/Shutdown.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Assets/Shutdown.svgz -------------------------------------------------------------------------------- /sdt/Assets/Suspend.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Assets/Suspend.svgz -------------------------------------------------------------------------------- /sdt/Assets/User.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Assets/User.svgz -------------------------------------------------------------------------------- /sdt/Backgrounds/wallpaper-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Backgrounds/wallpaper-dark.jpg -------------------------------------------------------------------------------- /sdt/Backgrounds/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Backgrounds/wallpaper.jpg -------------------------------------------------------------------------------- /sdt/Components/Clock.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Components/Clock.qml -------------------------------------------------------------------------------- /sdt/Components/Input.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Components/Input.qml -------------------------------------------------------------------------------- /sdt/Components/LoginForm.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Components/LoginForm.qml -------------------------------------------------------------------------------- /sdt/Components/SessionButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Components/SessionButton.qml -------------------------------------------------------------------------------- /sdt/Components/SystemButtons.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Components/SystemButtons.qml -------------------------------------------------------------------------------- /sdt/Components/UserList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Components/UserList.qml -------------------------------------------------------------------------------- /sdt/Components/VirtualKeyboard.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Components/VirtualKeyboard.qml -------------------------------------------------------------------------------- /sdt/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/Main.qml -------------------------------------------------------------------------------- /sdt/metadata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/metadata.desktop -------------------------------------------------------------------------------- /sdt/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/sdt/theme.conf -------------------------------------------------------------------------------- /sdt/wallpaper.jpg: -------------------------------------------------------------------------------- 1 | /usr/share/sddm/themes/sdt/Backgrounds/wallpaper-dark.jpg -------------------------------------------------------------------------------- /set-hypr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/set-hypr -------------------------------------------------------------------------------- /swaylock/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/swaylock/config -------------------------------------------------------------------------------- /waybar/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/waybar/config.jsonc -------------------------------------------------------------------------------- /waybar/scripts/baraction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/waybar/scripts/baraction -------------------------------------------------------------------------------- /waybar/scripts/update-sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/waybar/scripts/update-sys -------------------------------------------------------------------------------- /waybar/scripts/waybar-wttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/waybar/scripts/waybar-wttr.py -------------------------------------------------------------------------------- /waybar/style.css: -------------------------------------------------------------------------------- 1 | /home/sol/.config/waybar/style/style-dark.css -------------------------------------------------------------------------------- /waybar/style/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/waybar/style/style-dark.css -------------------------------------------------------------------------------- /waybar/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/waybar/style/style.css -------------------------------------------------------------------------------- /wlogout/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/wlogout/layout -------------------------------------------------------------------------------- /wofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/wofi/config -------------------------------------------------------------------------------- /wofi/style.css: -------------------------------------------------------------------------------- 1 | /home/sol/.config/wofi/style/style-dark.css -------------------------------------------------------------------------------- /wofi/style/style-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/wofi/style/style-dark.css -------------------------------------------------------------------------------- /wofi/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolDoesTech/HyprV2/HEAD/wofi/style/style.css --------------------------------------------------------------------------------