From f1e3d5859bfee40e9329327fc6e7604a7eb689ee Mon Sep 17 00:00:00 2001 From: Benjamin Lupton Date: Fri, 8 Sep 2023 13:29:37 +0800 Subject: [PATCH] rename trial theme to demo theme --- themes/demo.bash | 3 +++ themes/{trial.fish => demo.fish} | 2 +- themes/demo.nu | 3 +++ themes/{trial.zsh => demo.zsh} | 2 +- themes/trial.bash | 3 --- themes/trial.nu | 3 --- 6 files changed, 8 insertions(+), 8 deletions(-) create mode 100755 themes/demo.bash rename themes/{trial.fish => demo.fish} (64%) create mode 100644 themes/demo.nu rename themes/{trial.zsh => demo.zsh} (56%) delete mode 100755 themes/trial.bash delete mode 100644 themes/trial.nu diff --git a/themes/demo.bash b/themes/demo.bash new file mode 100755 index 000000000..ce868bdb7 --- /dev/null +++ b/themes/demo.bash @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +PROMPT_COMMAND="printf '%s' 'DorothyDemo> '" diff --git a/themes/trial.fish b/themes/demo.fish similarity index 64% rename from themes/trial.fish rename to themes/demo.fish index ab101c875..35ade8fe0 100755 --- a/themes/trial.fish +++ b/themes/demo.fish @@ -1,5 +1,5 @@ #!/usr/bin/env fish function fish_prompt - printf 'DorothyTrial> ' + printf 'DorothyDemo> ' end diff --git a/themes/demo.nu b/themes/demo.nu new file mode 100644 index 000000000..792200da4 --- /dev/null +++ b/themes/demo.nu @@ -0,0 +1,3 @@ +#!/usr/bin/env nu + +$env.PROMPT_COMMAND = 'DorothyDemo' diff --git a/themes/trial.zsh b/themes/demo.zsh similarity index 56% rename from themes/trial.zsh rename to themes/demo.zsh index 6eaaa5353..eec03bb0b 100755 --- a/themes/trial.zsh +++ b/themes/demo.zsh @@ -1,5 +1,5 @@ #!/usr/bin/env zsh precmd() { - printf 'DorothyTrial> ' + printf 'DorothyDemo> ' } diff --git a/themes/trial.bash b/themes/trial.bash deleted file mode 100755 index 262870684..000000000 --- a/themes/trial.bash +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -PROMPT_COMMAND="printf '%s' 'DorothyTrial> '" diff --git a/themes/trial.nu b/themes/trial.nu deleted file mode 100644 index 48af0bc41..000000000 --- a/themes/trial.nu +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env nu - -$env.PROMPT_COMMAND = 'DorothyTrial'