├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── build-iso.yml │ ├── build-live-iso.yml │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── SCREENSHOTS.md ├── cosign.pub ├── files ├── scripts │ ├── 00-image-info.sh │ ├── 01-main.sh │ ├── 10-install-appimages.sh │ ├── 20-chicago95.diff │ ├── 20-chicago95.sh │ ├── 21-de-tweaks.sh │ ├── 22-fonts.sh │ ├── 23-b00merang.sh │ ├── 24-wallpapers.sh │ └── 90-finalize.sh └── system │ ├── etc │ ├── lightdm │ │ └── lightdm-gtk-greeter.conf │ ├── skel │ │ ├── .config │ │ │ ├── audacious │ │ │ │ ├── QtUi.conf │ │ │ │ ├── config │ │ │ │ ├── playlist-state │ │ │ │ ├── playlists │ │ │ │ │ ├── 1000.audpl │ │ │ │ │ └── order │ │ │ │ └── plugin-registry │ │ │ ├── gtk-3.0 │ │ │ │ └── gtk.css │ │ │ ├── skippy-xd │ │ │ │ └── skippy-xd.rc │ │ │ └── xfce4 │ │ │ │ ├── panel │ │ │ │ ├── launcher-14 │ │ │ │ │ └── 17424724602.desktop │ │ │ │ ├── launcher-15 │ │ │ │ │ └── 17424723401.desktop │ │ │ │ ├── launcher-16 │ │ │ │ │ └── 17424725243.desktop │ │ │ │ └── launcher-7 │ │ │ │ │ └── 17424725604.desktop │ │ │ │ └── xfconf │ │ │ │ └── xfce-perchannel-xml │ │ │ │ ├── displays.xml │ │ │ │ ├── thunar.xml │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ │ ├── xfce4-notifyd.xml │ │ │ │ ├── xfce4-panel.xml │ │ │ │ ├── xfce4-power-manager.xml │ │ │ │ ├── xfce4-terminal.xml │ │ │ │ ├── xfwm4.xml │ │ │ │ └── xsettings.xml │ │ └── Desktop │ │ │ └── My Computer.desktop │ ├── ublue-os │ │ └── system-flatpaks.list │ └── xdg │ │ └── autostart │ │ └── winblues-blue95-startup-sound.desktop │ └── usr │ ├── lib │ ├── bootc │ │ └── install │ │ │ └── 60-blue95.toml │ ├── environment.d │ │ └── 60-blue95.conf │ ├── systemd │ │ └── user-preset │ │ │ └── 90-winblues.preset │ └── tmpfiles.d │ │ ├── audacious-default-skin.conf │ │ ├── livesys-session-extra.conf │ │ └── winblues-chicago95.conf │ ├── libexec │ ├── blue95-greeter-settings │ ├── blue95-installer.py │ └── volume-change │ └── share │ ├── applications │ ├── Clippy.desktop │ ├── chicago95plus-gui.desktop │ ├── epyrus.desktop │ ├── jspaint.desktop │ ├── liveinst.desktop │ └── palemoon.desktop │ ├── audacious │ └── Skins │ │ └── WinampClassic.wsz │ ├── factory │ └── var │ │ └── lib │ │ └── livesys │ │ └── livesys-session-extra.d │ │ └── 01-blue95.sh │ ├── icons │ └── Chicago95 │ │ ├── apps │ │ └── scalable │ │ │ └── jspaint.svg │ │ └── status │ │ └── symbolic │ │ └── display-brightness-symbolic.svg │ ├── ublue-os │ ├── blue95-logo.ansi │ ├── fastfetch.jsonc │ └── just │ │ └── 60-custom.just │ ├── winblues │ ├── chezmoi │ │ ├── .chezmoiscripts │ │ │ ├── run_after_00-etc-skel.sh │ │ │ ├── run_after_01-xfconf-profile.sh │ │ │ ├── run_after_02-xfce4-panel-profile.sh │ │ │ └── run_after_03-wallpapers.sh │ │ ├── dot_config │ │ │ └── gtk-3.0 │ │ │ │ └── gtk.css │ │ └── dot_local │ │ │ └── share │ │ │ └── xfce-panel-profile │ │ │ ├── config.txt │ │ │ ├── launcher-14 │ │ │ └── 17424724602.desktop │ │ │ ├── launcher-15 │ │ │ └── 17424723401.desktop │ │ │ ├── launcher-16 │ │ │ └── 17424725243.desktop │ │ │ └── launcher-7 │ │ │ └── 17424725604.desktop │ ├── icons │ │ ├── blue95.png │ │ ├── bob.png │ │ ├── mirc.svg │ │ ├── napster.svg │ │ ├── nvtop.png │ │ └── obsidian.png │ ├── installer.glade │ └── setup.png │ └── xfconf-profile │ └── default.json ├── justfile ├── modules └── .gitkeep └── recipes └── recipe.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ledif 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-iso.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/.github/workflows/build-iso.yml -------------------------------------------------------------------------------- /.github/workflows/build-live-iso.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/.github/workflows/build-live-iso.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/README.md -------------------------------------------------------------------------------- /SCREENSHOTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/SCREENSHOTS.md -------------------------------------------------------------------------------- /cosign.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/cosign.pub -------------------------------------------------------------------------------- /files/scripts/00-image-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/00-image-info.sh -------------------------------------------------------------------------------- /files/scripts/01-main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/01-main.sh -------------------------------------------------------------------------------- /files/scripts/10-install-appimages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/10-install-appimages.sh -------------------------------------------------------------------------------- /files/scripts/20-chicago95.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/20-chicago95.diff -------------------------------------------------------------------------------- /files/scripts/20-chicago95.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/20-chicago95.sh -------------------------------------------------------------------------------- /files/scripts/21-de-tweaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/21-de-tweaks.sh -------------------------------------------------------------------------------- /files/scripts/22-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/22-fonts.sh -------------------------------------------------------------------------------- /files/scripts/23-b00merang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/23-b00merang.sh -------------------------------------------------------------------------------- /files/scripts/24-wallpapers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/24-wallpapers.sh -------------------------------------------------------------------------------- /files/scripts/90-finalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/scripts/90-finalize.sh -------------------------------------------------------------------------------- /files/system/etc/lightdm/lightdm-gtk-greeter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/lightdm/lightdm-gtk-greeter.conf -------------------------------------------------------------------------------- /files/system/etc/skel/.config/audacious/QtUi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/audacious/QtUi.conf -------------------------------------------------------------------------------- /files/system/etc/skel/.config/audacious/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/audacious/config -------------------------------------------------------------------------------- /files/system/etc/skel/.config/audacious/playlist-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/audacious/playlist-state -------------------------------------------------------------------------------- /files/system/etc/skel/.config/audacious/playlists/1000.audpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/audacious/playlists/1000.audpl -------------------------------------------------------------------------------- /files/system/etc/skel/.config/audacious/playlists/order: -------------------------------------------------------------------------------- 1 | 1000 -------------------------------------------------------------------------------- /files/system/etc/skel/.config/audacious/plugin-registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/audacious/plugin-registry -------------------------------------------------------------------------------- /files/system/etc/skel/.config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /files/system/etc/skel/.config/skippy-xd/skippy-xd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/skippy-xd/skippy-xd.rc -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/panel/launcher-14/17424724602.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/panel/launcher-14/17424724602.desktop -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/panel/launcher-15/17424723401.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/panel/launcher-15/17424723401.desktop -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/panel/launcher-16/17424725243.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/panel/launcher-16/17424725243.desktop -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/panel/launcher-7/17424725604.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/panel/launcher-7/17424725604.desktop -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-power-manager.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-terminal.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml -------------------------------------------------------------------------------- /files/system/etc/skel/Desktop/My Computer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/skel/Desktop/My Computer.desktop -------------------------------------------------------------------------------- /files/system/etc/ublue-os/system-flatpaks.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/ublue-os/system-flatpaks.list -------------------------------------------------------------------------------- /files/system/etc/xdg/autostart/winblues-blue95-startup-sound.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/etc/xdg/autostart/winblues-blue95-startup-sound.desktop -------------------------------------------------------------------------------- /files/system/usr/lib/bootc/install/60-blue95.toml: -------------------------------------------------------------------------------- 1 | [install.filesystem.root] 2 | type = "btrfs" 3 | -------------------------------------------------------------------------------- /files/system/usr/lib/environment.d/60-blue95.conf: -------------------------------------------------------------------------------- 1 | QT_QPA_PLATFORMTHEME=qt5ct 2 | GTK_OVERLAY_SCROLLING=0 3 | -------------------------------------------------------------------------------- /files/system/usr/lib/systemd/user-preset/90-winblues.preset: -------------------------------------------------------------------------------- 1 | enable winblues-chezmoi.service 2 | -------------------------------------------------------------------------------- /files/system/usr/lib/tmpfiles.d/audacious-default-skin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/lib/tmpfiles.d/audacious-default-skin.conf -------------------------------------------------------------------------------- /files/system/usr/lib/tmpfiles.d/livesys-session-extra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/lib/tmpfiles.d/livesys-session-extra.conf -------------------------------------------------------------------------------- /files/system/usr/lib/tmpfiles.d/winblues-chicago95.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/lib/tmpfiles.d/winblues-chicago95.conf -------------------------------------------------------------------------------- /files/system/usr/libexec/blue95-greeter-settings: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | pkexec lightdm-gtk-greeter-settings 3 | -------------------------------------------------------------------------------- /files/system/usr/libexec/blue95-installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/libexec/blue95-installer.py -------------------------------------------------------------------------------- /files/system/usr/libexec/volume-change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/libexec/volume-change -------------------------------------------------------------------------------- /files/system/usr/share/applications/Clippy.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/applications/Clippy.desktop -------------------------------------------------------------------------------- /files/system/usr/share/applications/chicago95plus-gui.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/applications/chicago95plus-gui.desktop -------------------------------------------------------------------------------- /files/system/usr/share/applications/epyrus.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/applications/epyrus.desktop -------------------------------------------------------------------------------- /files/system/usr/share/applications/jspaint.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/applications/jspaint.desktop -------------------------------------------------------------------------------- /files/system/usr/share/applications/liveinst.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/applications/liveinst.desktop -------------------------------------------------------------------------------- /files/system/usr/share/applications/palemoon.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/applications/palemoon.desktop -------------------------------------------------------------------------------- /files/system/usr/share/audacious/Skins/WinampClassic.wsz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/audacious/Skins/WinampClassic.wsz -------------------------------------------------------------------------------- /files/system/usr/share/factory/var/lib/livesys/livesys-session-extra.d/01-blue95.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/factory/var/lib/livesys/livesys-session-extra.d/01-blue95.sh -------------------------------------------------------------------------------- /files/system/usr/share/icons/Chicago95/apps/scalable/jspaint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/icons/Chicago95/apps/scalable/jspaint.svg -------------------------------------------------------------------------------- /files/system/usr/share/icons/Chicago95/status/symbolic/display-brightness-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/icons/Chicago95/status/symbolic/display-brightness-symbolic.svg -------------------------------------------------------------------------------- /files/system/usr/share/ublue-os/blue95-logo.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/ublue-os/blue95-logo.ansi -------------------------------------------------------------------------------- /files/system/usr/share/ublue-os/fastfetch.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/ublue-os/fastfetch.jsonc -------------------------------------------------------------------------------- /files/system/usr/share/ublue-os/just/60-custom.just: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/ublue-os/just/60-custom.just -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_00-etc-skel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_00-etc-skel.sh -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_01-xfconf-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_01-xfconf-profile.sh -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_02-xfce4-panel-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_02-xfce4-panel-profile.sh -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_03-wallpapers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/.chezmoiscripts/run_after_03-wallpapers.sh -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/dot_config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/dot_config/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/config.txt -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-14/17424724602.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-14/17424724602.desktop -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-15/17424723401.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-15/17424723401.desktop -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-16/17424725243.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-16/17424725243.desktop -------------------------------------------------------------------------------- /files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-7/17424725604.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/chezmoi/dot_local/share/xfce-panel-profile/launcher-7/17424725604.desktop -------------------------------------------------------------------------------- /files/system/usr/share/winblues/icons/blue95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/icons/blue95.png -------------------------------------------------------------------------------- /files/system/usr/share/winblues/icons/bob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/icons/bob.png -------------------------------------------------------------------------------- /files/system/usr/share/winblues/icons/mirc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/icons/mirc.svg -------------------------------------------------------------------------------- /files/system/usr/share/winblues/icons/napster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/icons/napster.svg -------------------------------------------------------------------------------- /files/system/usr/share/winblues/icons/nvtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/icons/nvtop.png -------------------------------------------------------------------------------- /files/system/usr/share/winblues/icons/obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/icons/obsidian.png -------------------------------------------------------------------------------- /files/system/usr/share/winblues/installer.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/installer.glade -------------------------------------------------------------------------------- /files/system/usr/share/winblues/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/winblues/setup.png -------------------------------------------------------------------------------- /files/system/usr/share/xfconf-profile/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/files/system/usr/share/xfconf-profile/default.json -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/justfile -------------------------------------------------------------------------------- /modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recipes/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winblues/blue95/HEAD/recipes/recipe.yml --------------------------------------------------------------------------------