From 632e03e041a0d163e06134054963a0fdcf220dde Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Sat, 28 May 2022 08:48:20 +0800 Subject: [PATCH] add game 2048 --- src/QuickShell/Commands/GameCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QuickShell/Commands/GameCommand.php b/src/QuickShell/Commands/GameCommand.php index 534b006..fe67622 100644 --- a/src/QuickShell/Commands/GameCommand.php +++ b/src/QuickShell/Commands/GameCommand.php @@ -23,7 +23,7 @@ declare -i flag_skip # flag that prevents doing more than one operation on declare -i moves # stores number of possible moves to determine if player lost # the game declare ESC=\$'\e' # escape byte -declare header="Bash 2048 v1.1 (https://github.com/mydzor/bash2048)" +declare header="Bash 2048 v1.1 (https://github.com/mydzor/bash2048) CtrlC to stop |" declare -i start_time=\$(date +%s)