あるフリーランスエンジニアの色んなメモ!! ITスキル・ライフハックとか

Windows:コンソールをポケモン柄に変更する

Hyperというターミナルソフトの拡張機能を利用し、背景をポケモン柄に変更する


Hyperのインストール

https://hyper.is/ のInstallationからインストーラーをダウンロードし、Hyperのインストールを行う


設定ファイルの格納先

Hyperのversionによって設定ファイルの格納先が異なる

version 2系

C:\Users\ユーザー名\.hyper.js

version 3系

C:\Users\ユーザー名\AppData\Roaming\Hyper\.hyper.js

設定ファイルの編集例

module.exports = {
  config: {
    ...
    pokemon: 'pikachu', // Define your favorite pokemon theme
    pokecursor: 'true', // Activate your theme's pokecursor
    pokemonSyntax: 'dark', // Define the color of the terminal tabs
    unibody: 'false', // Define the color of the Hyper window header
    poketab: 'true', // Deactivate your theme's poketab
    ...

pokemonのところを変更すれば背景を変更可能
randomを設定すると、一定間隔で背景が変わる
選択可能な背景は https://klaussinani.github.io/hyper-pokemon/ で確認可能

comments powered by Disqus