diff options
author | lassulus <lassulus@lassul.us> | 2022-01-27 15:33:34 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-01-27 15:33:34 +0100 |
commit | ff7825816ff69340effb54de1a9ee8822b9baf9b (patch) | |
tree | dda9c9c9fdde3e84471037385d2f77b896a2b654 /krebs/5pkgs/simple | |
parent | e5c8919da86403ab94aacef4308f75998216669b (diff) |
krebsdance: better looking dance
Diffstat (limited to 'krebs/5pkgs/simple')
-rw-r--r-- | krebs/5pkgs/simple/krebsdance/default.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/krebs/5pkgs/simple/krebsdance/default.nix b/krebs/5pkgs/simple/krebsdance/default.nix index e95b6578f..bcb859a21 100644 --- a/krebs/5pkgs/simple/krebsdance/default.nix +++ b/krebs/5pkgs/simple/krebsdance/default.nix @@ -13,14 +13,14 @@ writers.writePython3Bin "krebsdance" {} '' dict( up='(V)', down='(A)', - left='>)', - right='(<', + left='>)=', + right='=(<', ), dict( up='(U)', down='(n)', - left=')=', - right='=(', + left=')==', + right='==(', ), ] @@ -29,7 +29,6 @@ writers.writePython3Bin "krebsdance" {} '' '*', '^', 'รถ', - '.', 'o', 'O', 'X', @@ -103,9 +102,9 @@ writers.writePython3Bin "krebsdance" {} '' mouth = random.choice(mouths) if args.dance: print(f'{clawstyle["down"]} {body["left"]}{eye}{mouth}{eye}{body["right"]}{clawstyle["up"]}') # noqa - print(f'{clawstyle["left"]}{body["left"]}{eye}{mouth}{eye}{body["right"]} {clawstyle["right"]}') # noqa + print(f' {clawstyle["left"]}{body["left"]}{eye}{mouth}{eye}{body["right"]} {clawstyle["right"]}') # noqa print(f'{clawstyle["right"]} {body["left"]}{eye}{mouth}{eye}{body["right"]} {clawstyle["left"]}') # noqa - print(f'{clawstyle["down"]}{body["left"]}{eye}{mouth}{eye}{body["right"]}{clawstyle["down"]}') # noqa + print(f' {clawstyle["down"]}{body["left"]}{eye}{mouth}{eye}{body["right"]}{clawstyle["down"]}') # noqa else: print(f'{clawstyle["up"]} {body["left"]}{eye}{mouth}{eye}{body["right"]} {clawstyle["up"]}') # noqa |