i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix spicetify wrapper command on Linux

+6 -2
+6 -2
fish/.config/fish/functions/spicetify.fish
··· 1 - function spicetify --wraps=spicetify.exe --description 'alias spicetify=spicetify.exe' 2 - spicetify.exe $argv 1 + function spicetify 2 + if string match -q -- "*microsoft*" (uname -a) 3 + spicetify.exe $argv 4 + else 5 + command spicetify $argv 6 + end 3 7 end