나는 다음을 추가했습니다 ~/.profile
:
#Change desktop background f(x)
function changeBackground() {
FILE="'file://$(readlink -f "$1")'"
echo changing to "$FILE"
gsettings set org.gnome.desktop.background picture-uri "$FILE"
}
사이드 노트: 이 기능의 목적은 사용자가 이미지 파일의 경로를 지정하고 이미지 파일을 가져와 바탕 화면 배경으로 설정하는 것입니다. 예:changeBackground /backgrounds/background.png
그런 다음 실행하면 export -f changeBackground
다음 오류가 발생합니다.
./scripts/bins: line 15: export: changeBackground: not a function
왜?