![사용하지 않을 때 커서 포인터를 숨기는 방법은 무엇입니까?](https://linux55.com/image/140951/%EC%82%AC%EC%9A%A9%ED%95%98%EC%A7%80%20%EC%95%8A%EC%9D%84%20%EB%95%8C%20%EC%BB%A4%EC%84%9C%20%ED%8F%AC%EC%9D%B8%ED%84%B0%EB%A5%BC%20%EC%88%A8%EA%B8%B0%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%80%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F.png)
나는 unclutter를 사용했지만 명령이 터미널에서 실행될 때만 커서를 제거합니다. 영구적인 솔루션을 제공하지는 않습니다. 매번 명령을 실행하고 싶지 않습니다.
현재 내가 하고 있는 일은 데스크톱 파일 형식의 스크립트를 호출하는 것입니다.
/etc/xdg/autostart/single_start.desktop에서
데스크탑 파일 **single_start.desktop **
enter #!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false'
Exec=bash /etc/xdg/autostart/single.sh
Name=Chromiumrelaunch
Comment=comment here
Icon=icon path here
**single.sh ** 파일은
#!/bin/bash
lxterminal -e unclutter -idle 1 &
sleep 10
xdotool windowminimize $(xdotool getactivewindow)
그래서 여전히 깔끔한 터미널 창이 나오므로 xdotool을 사용하여 창을 최소화합니다. 내가 원하는 것은 배경이 항상 깔끔해지는 것이다.