From 47e9bfc0b0f6abdacd9f352f206ecff76587eab6 Mon Sep 17 00:00:00 2001 From: nkoji21 <133028205+nkoji21@users.noreply.github.com> Date: Wed, 8 Jul 2026 16:54:51 +0900 Subject: [PATCH 1/2] =?UTF-8?q?refactor(cursor):=20=E8=83=8C=E6=99=AF?= =?UTF-8?q?=E7=94=BB=E5=83=8F=E3=83=91=E3=82=B9=E3=82=92=E3=83=87=E3=82=A3?= =?UTF-8?q?=E3=83=AC=E3=82=AF=E3=83=88=E3=83=AA=E6=8C=87=E5=AE=9A=E3=81=AB?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=E3=81=97=E9=80=A3=E7=95=AA=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E3=82=92=E5=BB=83=E6=AD=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit shalldie.background拡張は拡張子なしパスをフォルダとして再帰的に 画像列挙するため、1枚ごとの手動連番/JSON編集が不要になる --- .cursor/settings.json | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.cursor/settings.json b/.cursor/settings.json index e149e3d..e9c27bf 100644 --- a/.cursor/settings.json +++ b/.cursor/settings.json @@ -54,15 +54,7 @@ "background.enabled": true, "background.fullscreen": { "images": [ - "/usr/local/share/ghostty/backgrounds/1.jpeg", - "/usr/local/share/ghostty/backgrounds/2.png", - "/usr/local/share/ghostty/backgrounds/3.jpg", - "/usr/local/share/ghostty/backgrounds/4.png", - "/usr/local/share/ghostty/backgrounds/5.png", - "/usr/local/share/ghostty/backgrounds/6.png", - "/usr/local/share/ghostty/backgrounds/7.png", - "/usr/local/share/ghostty/backgrounds/8.png", - "/usr/local/share/ghostty/backgrounds/9.jpg" + "/usr/local/share/ghostty/backgrounds" ], "opacity": 0.042, "random": true From 76aefd64e75beee96108d9fc66fe8ed8a62ce571 Mon Sep 17 00:00:00 2001 From: nkoji21 <133028205+nkoji21@users.noreply.github.com> Date: Wed, 8 Jul 2026 16:55:04 +0900 Subject: [PATCH 2/2] =?UTF-8?q?feat(cursor):=20workbench=E3=81=AE=E5=90=84?= =?UTF-8?q?UI=E8=A6=81=E7=B4=A0=E3=81=AB=E5=8D=8A=E9=80=8F=E6=98=8E?= =?UTF-8?q?=E8=83=8C=E6=99=AF=E8=89=B2=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 背景画像を透過して見せる範囲をターミナルだけでなくエディタ/ サイドバー/パネル/メニュー等全体に拡張するため --- .cursor/settings.json | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/.cursor/settings.json b/.cursor/settings.json index e9c27bf..1db12d4 100644 --- a/.cursor/settings.json +++ b/.cursor/settings.json @@ -63,7 +63,33 @@ // background - opacity "vscode_vibrancy.opacity": 0.42, "workbench.colorCustomizations": { - "terminal.background": "#00000000" + "terminal.background": "#00000000", + "editorPane.background": "#1e1e1e00", + "editorGroupHeader.tabsBackground": "#1e1e1e00", + "editorGroupHeader.noTabsBackground": "#1e1e1e00", + "breadcrumb.background": "#1e1e1e00", + "editorGutter.background": "#1e1e1e00", + "panel.background": "#1e1e1e00", + "panelStickyScroll.background": "#1e1e1e00", + "tab.activeBackground": "#1e1e1e00", + "tab.unfocusedActiveBackground": "#1e1e1e00", + "sideBar.background": "#1e1e1e6b", + "sideBarTitle.background": "#1e1e1e6b", + "sideBarStickyScroll.background": "#1e1e1e6b", + "activityBar.background": "#1e1e1e6b", + "editor.background": "#1e1e1e6b", + "editorStickyScroll.background": "#1e1e1e6b", + "editorStickyScrollGutter.background": "#1e1e1e6b", + "tab.inactiveBackground": "#1e1e1e6b", + "tab.unfocusedInactiveBackground": "#1e1e1e6b", + "inlineChat.background": "#1e1e1ee6", + "editorWidget.background": "#1e1e1ee6", + "editorHoverWidget.background": "#1e1e1ee6", + "editorSuggestWidget.background": "#1e1e1ee6", + "notifications.background": "#1e1e1ee6", + "notificationCenterHeader.background": "#1e1e1ee6", + "menu.background": "#1e1e1ee6", + "quickInput.background": "#1e1e1ee6" }, "workbench.panel.showLabels": false, "zig.zls.enabled": "on",