tamir_lxqt_turkce 659 B

12345678910111213141516171819
  1. #!/bin/bash
  2. masa=lxqt
  3. if [ "`cat ~/.xinitrc | grep $masa`" ]; then
  4. if [ -d /opt/lxqt-turkce ]; then
  5. cd /opt/lxqt-turkce && git pull -q && echo "git guncellemesi yapıldı."
  6. else
  7. git clone https://github.com/yasarciv/LXQt-Turkce /opt/lxqt-turkce
  8. fi
  9. cp -rf /opt/lxqt-turkce/applications/* /usr/share/applications/
  10. cp -rf /opt/lxqt-turkce/desktop-directories/* /usr/share/desktop-directories/
  11. cp -rf /opt/lxqt-turkce/Computer.desktop $HOME/Masaüstü/
  12. cp -rf /opt/lxqt-turkce/Home.desktop $HOME/Masaüstü/
  13. cp -rf /opt/lxqt-turkce/Trash.desktop $HOME/Masaüstü/
  14. echo "türkçe güncellemeler yapıldı."
  15. else
  16. echo "masaüstü lxqt değil!"
  17. fi