Another question relating to fish/bass

i get this when using the example from bass:

╰─>$ bass export X=3
scummvm: Stray argument ‘export’
Usage: scummvm [OPTIONS]… [GAME]

Try ‘scummvm --help’ for more options.
┬─[fj@whitewolf:~]─[08:37:01 PM]
╰─>$ bass export X=3
scummvm: Stray argument ‘export’
Usage: scummvm [OPTIONS]… [GAME]

Try ‘scummvm --help’ for more options.
┬─[fj@whitewolf:~]─[08:38:13 PM]
╰─>$

why is scummvm conflicting with bass?

this is what it should do:

> bass export X=3
> echo $X
3

refrence the bass git website:

Thought you meant this,

1 Like

LMFAO no but that is funny! It doesn’t matter I guess I don’t even need to edit my .config file for fish this in-depth as I will probably never use this stuff I think I am good for now. I THINK :wink:

IF ANYONE wants they can look at what I got, here it is:

function fish_greeting

	set_color red
	echo -n "THINK"
	set_color cyan
	echo -n "4"
	set_color magenta
	echo -n "YOURSELF"
	set_color blue
	echo -n "Question"
	set_color yellow
	echo "Authority"
end
fastfetch

alias home "cd ~"
alias fishy "gedit ~/.config/fish/config.fish"

set -gx EDITOR gedit
set -gx GIT_EDITOR gedit

set normal (set_color normal)
set magenta (set_color magenta)
set yellow (set_color yellow)
set green (set_color green)
set red (set_color red)
set gray (set_color -o black)

# Fish git prompt
set __fish_git_prompt_showdirtystate 'yes'
set __fish_git_prompt_showstashstate 'yes'
set __fish_git_prompt_showuntrackedfiles 'yes'
set __fish_git_prompt_showupstream 'yes'
set __fish_git_prompt_color_branch yellow
set __fish_git_prompt_color_upstream_ahead green
set __fish_git_prompt_color_upstream_behind red

# Status Chars
set __fish_git_prompt_char_dirtystate '󱐋'
set __fish_git_prompt_char_stagedstate ''
set __fish_git_prompt_char_untrackedfiles '󰒡'
set __fish_git_prompt_char_stashstate '󱞥'
set __fish_git_prompt_char_upstream_ahead ''
set __fish_git_prompt_char_upstream_behind ''


function fish_prompt
  set last_status $status

  set_color $fish_color_cwd
  printf '%s' (prompt_pwd)
  set_color normal

  printf '%s ' (__fish_git_prompt)

  set_color normal
end

I had a absouletly amazing time setting this up! IT WAS SUPER FUN!

I’ve not heard of bass, I use fish, but always script in sh/bash as it is more portable (not that I need portability), installed, will read the git pages later. Watching an NRL match (Australian rugby league) :smiley:

1 Like