「Cool-retro-term」の版間の差分
ナビゲーションに移動
検索に移動
Kusanaginoturugi (トーク | 投稿記録) (新規作成(英語版より)) |
Kusanaginoturugi (トーク | 投稿記録) (TranslationStatus を更新) |
||
(同じ利用者による、間の6版が非表示) | |||
1行目: | 1行目: | ||
{{Lowercase title}} |
{{Lowercase title}} |
||
+ | [[en:Cool-retro-term]] |
||
[[Category:ターミナルエミュレータ]] |
[[Category:ターミナルエミュレータ]] |
||
− | [https://github.com/Swordfish90/cool-retro-term cool-retro-term] |
+ | [https://github.com/Swordfish90/cool-retro-term cool-retro-term] は古いブラウン管ディスプレイを模倣した見栄えのよいターミナルエミュレータです。 |
|
|
||
− | == |
+ | == インストール == |
+ | |||
+ | {{Pkg|cool-retro-term}} パッケージ、または 開発版 {{AUR|cool-retro-term-git}} をインストールします。 |
||
|
|
||
+ | |||
− | Install the {{Pkg|cool-retro-term}} package or {{AUR|cool-retro-term-git}} for the development version. |
||
+ | == 設定 == |
||
− | |
||
− | == |
+ | === キーリマップ === |
+ | コピー/ペーストなどのキーマッピングアクションを変更するための GUI または設定ファイルはありません。 |
||
− | |
||
+ | |||
− | === Key remapping === |
||
+ | {{ic|/app/qml/main.qml}} にターミナルのキーバインディングが含まれており、そのファイルでキーバインドを設定して、パッケージをビルドします。 |
||
− | |
||
+ | |||
− | There are no gui or config file to change key mapping actions like copy/paste. |
||
+ | 現在のマスターはビルドされていますが、cool-retro-terminal の起動時に {{ic|Cannot assign to non-existent property "blinkingCursor"}} というメッセージで失敗します。([https://github.com/Swordfish90/cool-retro-term/issues/620 github issue] 参照)。そのため、余分な確認が必要になります。 |
||
− | |
||
+ | |||
− | The {{ic|/app/qml/main.qml}} contains key bindings for the terminal. So all you have to do is to bind your keys there and build the package. |
||
+ | 以下のコードは、カレントディレクトリに [[PKGBUILD]] があることを前提としています。 |
||
− | |
||
− | The current master builds, but fails on cool-retro-terminal start with {{ic|Cannot assign to non-existent property "blinkingCursor"}} message, see [https://github.com/Swordfish90/cool-retro-term/issues/620 github issue]. So the extra checkout step will be required. |
||
− | |
||
− | The following code assume that you have [[PKGBUILD]] in current directory. |
||
|
|
||
{{bc|1= |
{{bc|1= |
||
28行目: | 28行目: | ||
cd src/cool-retro-term && qmake && make && cd ../.. |
cd src/cool-retro-term && qmake && make && cd ../.. |
||
cd src/cool-retro-term && make INSTALL_ROOT="$PWD/../../pkg/cool-retro-term-git/" install && cd ../.. |
cd src/cool-retro-term && make INSTALL_ROOT="$PWD/../../pkg/cool-retro-term-git/" install && cd ../.. |
||
− | makepkg - |
+ | makepkg -sRi |
}} |
}} |
||
+ | {{TranslationStatus|Cool-retro-term|2022-01-04|707926}} |
2022年1月4日 (火) 10:09時点における最新版
cool-retro-term は古いブラウン管ディスプレイを模倣した見栄えのよいターミナルエミュレータです。
インストール
cool-retro-term パッケージ、または 開発版 cool-retro-term-gitAUR をインストールします。
設定
キーリマップ
コピー/ペーストなどのキーマッピングアクションを変更するための GUI または設定ファイルはありません。
/app/qml/main.qml
にターミナルのキーバインディングが含まれており、そのファイルでキーバインドを設定して、パッケージをビルドします。
現在のマスターはビルドされていますが、cool-retro-terminal の起動時に Cannot assign to non-existent property "blinkingCursor"
というメッセージで失敗します。(github issue 参照)。そのため、余分な確認が必要になります。
以下のコードは、カレントディレクトリに PKGBUILD があることを前提としています。
git clone https://github.com/Swordfish90/cool-retro-term src/cool-retro-term cd src/cool-retro-term && git checkout a736cfd5485ed0f0999da07fee72e3642dd87ff7 && cd ../.. # edit src/cool-retro-term/app/qml/main.qml cd src/cool-retro-term && sed -i '/qmltermwidget/d' cool-retro-term.pro && cd ../.. cd src/cool-retro-term && qmake && make && cd ../.. cd src/cool-retro-term && make INSTALL_ROOT="$PWD/../../pkg/cool-retro-term-git/" install && cd ../.. makepkg -sRi