Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ feat(post): How to change arc browser lock icons. #11

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions blog/2024-10-06-change-arc-icons.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
title: 修改 Arc Browser 的图标
tags: [MacOS, Arc Browser]
---

要在 macOS 上解锁 Arc 浏览器的全部图标,可以通过终端命令来实现。以下是具体步骤和可用图标的列表:

## 解锁步骤

1. **打开终端**:在你的 Mac 上找到并打开终端应用程序。
2. **输入命令**:根据你想要解锁的图标,输入相应的命令。以下是可用图标及其对应的命令:

- **Candy Arc**:

```bash
defaults write company.thebrowser.Browser currentAppIconName -string candy
```

- **Hologram**:

```bash
defaults write company.thebrowser.Browser currentAppIconName -string hologram
```

- **Neon**:

```bash
defaults write company.thebrowser.Browser currentAppIconName -string neon
```

- **Fluted Glass**:

```bash
defaults write company.thebrowser.Browser currentAppIconName -string flutedGlass
```

- **Schoolbook**:

```bash
defaults write company.thebrowser.Browser currentAppIconName -string schoolbook
```

- **Colorful**:
```bash
defaults write company.thebrowser.Browser currentAppIconName -string colorful
```

3. **重启 Arc 浏览器**:输入命令后,关闭并重新启动 Arc 浏览器,以应用新的图标。

## 注意事项

- 某些图标需要通过推荐朋友来解锁,例如 Neon 需要推荐 1 位朋友,Fluted Glass 需要推荐 5 位朋友等。
- 如果你想使用自定义图标,可以通过修改 Arc 应用程序包中的资源文件,但这涉及更复杂的操作,需谨慎进行。

Citations:

- [1] https://www.anuzpandey.com/snippets/unlock-arc-browser-app-icons-for-free
- [2] https://www.johnsypin.com/2024/03/04/arc-browser-unlock-new-icons-with-terminal/
- [3] https://gist.github.com/gabe565/9654eea08a9f6c7c1f593049e5bed243?permalink_comment_id=5157931
- [4] https://resources.arc.net/hc/en-us/articles/20498293324823-Arc-for-macOS-2024-Release-Notes
- [5] https://resources.arc.net/hc/en-us/articles/22352326167703-Change-Arc-for-Desktop-App-Icon
14 changes: 8 additions & 6 deletions src/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ hide_table_of_contents: false


```python
import openai
import kubernetes

intro = (f"🔭 I'm currently working as a PM at @DaoCloud\n"
f"🌱 I'm currently learning Golang, React, Kubernetes, Piano\n"
f"💬 I usually handle GitHub with off-hours.")
import llm
from cloudnative import kubernetes

intro = (f"🔭 I'm currently working as a PM at [@DaoCloud](https://www.daocloud.io)\n"
f"🌱 I'm experienced in Cloud Native technologies, architecture design and product management.\n"
f"🔥 I'm focus on LLM infrastructure & CloudNative technologies.\n"
f"👯 I'm looking to collaborate on LLM and [CNCF projects](https://landscape.cncf.io/)\n"
f"💬 I usually handle GitHub issues with off-hours.")

print(intro)
```
Expand Down
Loading