summaryrefslogtreecommitdiff
path: root/scheme/main.fish
diff options
context:
space:
mode:
Diffstat (limited to 'scheme/main.fish')
-rwxr-xr-xscheme/main.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/scheme/main.fish b/scheme/main.fish
index 8c11a09..129856a 100755
--- a/scheme/main.fish
+++ b/scheme/main.fish
@@ -42,7 +42,7 @@ if contains -- "$scheme" $valid_schemes
set -l mode $flavour
if test -z "$mode"
# Try to use current mode if not provided and current mode exists for flavour, otherwise random mode
- set $mode (cat $C_STATE/scheme/current-mode.txt 2> /dev/null)
+ set mode (cat $C_STATE/scheme/current-mode.txt 2> /dev/null)
contains -- "$mode" $modes || set mode (random choice $modes)
end