「Cool-retro-term」の版間の差分
ナビゲーションに移動
検索に移動
Kusanaginoturugi (トーク | 投稿記録) (新規作成(英語版より)) |
Kusanaginoturugi (トーク | 投稿記録) (訳出) |
||
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= |
||
30行目: | 31行目: | ||
makepkg -Ri |
makepkg -Ri |
||
}} |
}} |
||
+ | {{TranslationStatus|Cool-retro-term|2021-08-18|675115}} |
2021年8月18日 (水) 10:21時点における版
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 -Ri