web-dev-qa-db-ja.com

ASCIIコマンドラインまたはTUIのスクリーンセーバー?

これ 質問が広すぎるため閉じられたので、ここでASCIIアニメーションに関してより具体的に説明します=)

スクリーンセーバーとして使用できるASCIIアニメーションはありますか-TUIまたはコマンドラインのいずれかで?

30
TellMeWhy

Pipes.sh

ASCIIの古典的なスクリーンセーバー。

enter image description here

使用法:

wget https://raw.githubusercontent.com/pipeseroni/pipes.sh/master/pipes.sh 
chmod +x pipes.sh
./pipes.sh

インストール:

git clone https://github.com/pipeseroni/pipes.sh.git
cd pipes.sh
Sudo make install

オプション:

 -t #

パイプの種類。 documentation を参照して、それらすべてを確認してください。

-f [20-100]

フレームレート。

-s [5-15]

直線フィッティングの確率。

-r LIMIT

X文字の後にリセットします。制限がない場合は0です。

-R

ランダムな開始点。

-B

大胆な効果はありません。

-C

色なし。


詳細については documentation を参照してください。

23
hg8

cmatrixも素晴らしいものです! Installそれで:

Sudo apt-get install cmatrix

manpageの説明:

CMatrix(1)                                                    General Commands Manual                                                   CMatrix(1)

NAME
       CMatrix - simulates the display from "The Matrix"

SYNOPSIS
       cmatrix [-abBflohnsVx] [-u update] [-C color]

DESCRIPTION
       Shows a scrolling 'Matrix' like screen in Linux

   OPTIONS
       -a     Asynchronous scroll

       -b     Bold characters on

       -B     All bold characters (overrides -b)

       -f     Force the linux $TERM type to be on

       -l     Linux mode (sets "matrix.fnt" font in console)

       -o     Use old-style scrolling

       -h, -? Print usage and exit

       -n     No bold characters (overrides -b and -B)

       -s     "Screensaver" mode, exits on first keystroke

       -x     X window mode, use if your xterm is using mtx.pcf

       -V     Print version information and exit

       -u delay
              Screen update delay 0 - 9, default 4

       -C color
              Use this color for matrix (default green).  Valid colors are green, red, blue, white, yellow, cyan, Magenta and black.

   KEYSTROKES
       The following keystrokes are available during execution (unavailable in -s mode)

       a      Toggle asynchronous scroll

       b      Random bold characters

       B      All bold characters

       n      Turn off bold characters

       0-9    Adjust update speed

       ! @ # $ % ^ & )
              Change  the  color  of  the  matrix to the corresponding color: ! - red, @ - green, # - yellow, $ - blue, % - Magenta, ^ - cyan, & -
              white, ) - black.

       q      Quit the program

BUGS
       This program is very CPU intensive.  Don't be surprised if it eats up over 40% of your CPU at times.

HOMEPAGE
       The CMatrix homepage is currently at http://www.asty.org/cmatrix.

AUTHORS
       Chris Allegretta ([email protected]), with a lot of help from many other people. See README file for details.

                                                                  Mon May 3 1999                                                        CMatrix(1)

例:

通常のターミナル実行中:

cmatrix -s -b

enter image description here

コンソール:

cmatrix -s -b -l

enter image description here


注:ここでは画像に表示していませんが、アニメーション化されています。

適切なスクリーンセーバーのように動作させたい場合(-lオプションは機能しませんが)、 out this answer をチェックしてください。

20
user364819

このASCIIアニメーションはスクリーンセーバーとして使用できます。

ライブ水族館

enter image description here

あなたはそれをインストールする方法を見つけることができます こちら

11
TellMeWhy

用語節約

Termsaverは、さまざまなアニメーションを組み込んだテキストベースのスクリーンセーバーです。

 urlfetcher     displays url contents with typing animation
 starwars       runs the asciimation Star Wars movie
 matrix         displays a matrix movie alike screensaver
 jokes4all      displays recent jokes from jokes4all.net (NSFW)
 clock          displays a digital clock on screen
 programmer     displays source code in typing animation
 quotes4all     displays recent quotes from quotes4all.net
 rssfeed        displays rss feed information
 rfc            randomly displays RFC contents
 sysmon         displays a graphical system monitor
 randtxt        displays Word in random places on screen
 asciiartfarts  displays ascii images from asciiartfarts.com (NSFW)

man termsaverから)


インストール:

 Sudo apt-get install termsaver

または、Ubuntu Software Centerを使用してインストールします。

Install via the software center

使用法:

 termsaver matrix

enter image description here

enter image description here

enter image description here

11
hg8

ソース

Sudo apt-get install bsdgames
worms -d 190 -n 4

enter image description here

rain -d 180

enter image description here

5
A.B.