From f16cc52c609131f4324b5309c1314d9aeefe7803 Mon Sep 17 00:00:00 2001 From: Bryce Adelstein Lelbach aka wash Date: Mon, 9 Mar 2026 15:44:21 -0400 Subject: [PATCH] Brev: Add custom icons for Nsight Systems and Nsight Compute launcher entries. Change the server proxy category to "Console" so icons render correctly in the JupyterLab launcher. --- brev/icons/nsight_compute.svg | 1 + brev/icons/nsight_systems.svg | 1 + brev/jupyter-server-config.py | 6 ++++-- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 brev/icons/nsight_compute.svg create mode 100644 brev/icons/nsight_systems.svg diff --git a/brev/icons/nsight_compute.svg b/brev/icons/nsight_compute.svg new file mode 100644 index 00000000..60d35677 --- /dev/null +++ b/brev/icons/nsight_compute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/brev/icons/nsight_systems.svg b/brev/icons/nsight_systems.svg new file mode 100644 index 00000000..7f8eeb88 --- /dev/null +++ b/brev/icons/nsight_systems.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/brev/jupyter-server-config.py b/brev/jupyter-server-config.py index 6574c245..47a925a8 100644 --- a/brev/jupyter-server-config.py +++ b/brev/jupyter-server-config.py @@ -36,7 +36,8 @@ "port": 8080, "launcher_entry": { "title": "Nsight Systems", - "category": "Nsight", + "category": "Console", # Must be Console or Notebook to render icons. + "icon_path": "/accelerated-computing-hub/brev/icons/nsight_systems.svg", }, "new_browser_tab": False, }, @@ -45,7 +46,8 @@ "port": 8081, "launcher_entry": { "title": "Nsight Compute", - "category": "Nsight", + "category": "Console", # Must be Console or Notebook to render icons. + "icon_path": "/accelerated-computing-hub/brev/icons/nsight_compute.svg", }, "new_browser_tab": False, }