6 lines
82 B
Bash
6 lines
82 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$SHELL" != "$(which fish)" ]; then
|
||
|
chsh -s "$(which fish)"
|
||
|
fi
|