惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
雷峰网
雷峰网
Recent Announcements
Recent Announcements
月光博客
月光博客
G
Google Developers Blog
腾讯CDC
S
Secure Thoughts
大猫的无限游戏
大猫的无限游戏
T
Tenable Blog
云风的 BLOG
云风的 BLOG
W
WeLiveSecurity
博客园 - 【当耐特】
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
博客园 - 聂微东
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
人人都是产品经理
人人都是产品经理
P
Privacy International News Feed
MyScale Blog
MyScale Blog
K
Kaspersky official blog
T
The Blog of Author Tim Ferriss
Attack and Defense Labs
Attack and Defense Labs
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
aimingoo的专栏
aimingoo的专栏
I
Intezer
Vercel News
Vercel News
小众软件
小众软件
Simon Willison's Weblog
Simon Willison's Weblog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
N
Netflix TechBlog - Medium
P
Proofpoint News Feed
Latest news
Latest news
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tor Project blog
S
Security Affairs
P
Proofpoint News Feed
博客园 - 三生石上(FineUI控件)
博客园 - Franky
C
Cyber Attacks, Cyber Crime and Cyber Security
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
美团技术团队
Recent Commits to openclaw:main
Recent Commits to openclaw:main
S
Security @ Cisco Blogs
L
LINUX DO - 热门话题
Know Your Adversary
Know Your Adversary
Project Zero
Project Zero
D
Docker
L
Lohrmann on Cybersecurity
F
Full Disclosure

MakeItClear

Fish Shell 设置 python3 为默认版本 Homebrew 安装及更新软件 | MakeItClear FastJson 对象、JSON、字符串、Map 之间的互转 | MakeItClear Mac 安装配置Mysql | MakeItClear Mac 安装配置 Miniconda | MakeItClear Mac 终端提示: The default interactive shell is now zsh. Chrome 内置二维码功能 | MakeItClear Chrome 优秀插件推荐「持续更新」 | MakeItClear Mac 免费效率软件推荐「持续更新」 | MakeItClear
Hyper & Fish Shell | MakeItClear
2021-02-28 · via MakeItClear

Hyper

简介

Hyper 是一个基于 JS/HTML/CSS 的终端(Terminal),类似于 macOS 自带的 terminal,但是具有更高的可塑性以及更漂亮的外观。目前还比较小众,反应速度略慢。

安装

请按 Hyper™官网Hyper github 主页 介绍进行安装。

主题/插件

Hyper™官网 可找到喜欢的主题和插件。点开 插件/主题 详情页面,点击右下角的 install 会弹出安装命令,复制命令到 Hyper 执行即可进行安装。

命令

# 安装插件/主题
hyper i xxx
# 删除插件/主题
hyper rm xxx

配置

Hyper 所有的配置都在 hyper.js 文件中,包括字体、颜色、插件、shell 等。

配置窗口半透明

找到 backgroundColor那行,改成如下:

backgroundColor: '#000.0.5',
# 或者下面这种
backgroundColor: 'rgba(0,0,0,0.5)', 

支持中文

env: {LANG:'zh_CN.utf-8'},

切换 Shell

Hyper 默认 Shell 为系统默认的 Shell,而 macOS 自 Catalina 版本之后默认的 Shell 是 zsh,因为我个人比较喜欢 Fish Shell,所以我将 Hyper 的默认 Shell 调整为 Fish Shell。找到 shell 那行,修改如下:

shell: '/usr/local/bin/fish',

Fish Shell

简介

Fish 是 "the friendly interactive shell" 的简称,最大特点就是方便易用。很多其他 Shell 需要配置才有的功能,Fish 默认提供,不需要任何配置。

教程

fish (简体中文) - ArchWiki
新一代命令行工具 - Fish Shell - wsq.cool
Fish shell 入门教程 - 阮一峰的网络日志

补充

fish 对 anaconda 的支持或者 anaconda 对 fish 的支持一直不是很友好,都需要做额外的操作才能正常使用,这个额外的操作还随着版本更新一直在变。

解决方案,anaconda 的安装路径中有关于 fish 的解决方案,先在系统默认的终端中找到 anaconda 的安装位置。

conda info

在给出的 info 中找到 base environment ,我安装的是 miniconda ,base environment 是 /usr/local/miniconda3 ,查看 conda.fish 即可找到解决方案。

more /usr/local/miniconda3/etc/fish/conf.d/conda.fish