change the system icon to a gay femboy furry

This commit is contained in:
2025-05-21 19:36:43 +03:00
parent 4f6ff46ea2
commit f556816d97
5 changed files with 45 additions and 12 deletions

View File

@@ -44,12 +44,13 @@
"Sober": "Roblox",
"vinegar": "Vinegar",
"RobloxStudio": "Roblox Studio",
"Minecraft: Forge Loading...": "Minecraft",
// "Minecraft NeoForge%*? 1%.2[0-9](%.[0-9]+)?": "Minecraft",
"gemini.google.com_/app": "Gemini",
"PORTAL 2 - (OpenGL|Vulkan)": "Portal 2",
"HALF-LIFE 2 - (OpenGL|Vulkan)": "Half-Life 2",
"(.*) — Firefox( Developer Edition)?": "$1",
"(.*) - Google( Search| meklēšana)?": "$1"
"(.*) - Google( Search| meklēšana)?": "$1",
"Minecraft NeoForge%*(.+)": "Minecraft"
},
"separate-outputs": false
},

View File

@@ -2,21 +2,26 @@
{
# system.nixos = {
# distroName = "OCbwoy3";
# extraOSReleaseArgs = {
# HOME_URL="https://ocbwoy3.dev/";
# VERSION_CODENAME="";
# NAME="OCbwoy3";
# PRETTY_NAME="OCbwoy3";
# };
# };
environment.systemPackages = [
(pkgs.callPackage ./../packages/ocbwoy3-icons/default.nix {})
];
system.nixos = {
extraOSReleaseArgs = {
LOGO="ocbwoy3-system";
};
};
system.name = "ocbwoy3";
system.nixos.label = "ocbwoy3-config-main";
boot.loader.grub.configurationName = lib.mkDefault "ocbwoy3/config:main";
system.activationScripts.installRoblox = {
text = ''
# install roblox manually from flathub 😍
if [ ! -d "/home/ocbwoy3/.var/app/org.vinegarhq.Sober" ]; then
echo "Please Install Roblox - https://flathub.org/apps/org.vinegarhq.Sober"
echo "Please Install Roblox"
# echo "flathub.org/apps/org.vinegarhq.Sober"
echo "$ flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo"
echo "$ flatpak install --user flathub org.vinegarhq.Sober"
fi

View File

@@ -125,6 +125,8 @@
protonvpn-gui
(writeShellScriptBin "protonvpn" ''${pkgs.protonvpn-cli}/bin/protonvpn-cli "$@"'')
kdePackages.kdialog
(writeShellScriptBin "roblox-studio-patcher" ''${pkgs.bun}/bin/bun run /home/ocbwoy3/config/scripts/bin/patchInternalRobloxStudio.ts'')
firefox-devedition

View File

@@ -0,0 +1,25 @@
{ lib, stdenv, fetchgit, pkg-config, wayland, wayland-protocols, wlr-protocols, wayland-scanner, libspng, pkgs }:
stdenv.mkDerivation rec {
pname = "ocbwoy3-system-icons";
version = "1.0.0";
src = ./.;
nativeBuildInputs = [ ];
buildInputs = [ ];
installPhase = ''
mkdir -p $out/share/icons/hicolor/{128x128,256x256,512x512}/apps
for size in 128x128 256x256 512x512; do
cp ./logo.png $out/share/icons/hicolor/$size/apps/ocbwoy3-system.png
done
'';
meta = with lib; {
description = "OCbwoy3's custom icons for NixOS";
homepage = "https://github.com/ocbwoy3/config";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB