To-Slalom

update pcmanfm

Apr 7th, 2021 (edited)
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.72 KB | None | 0 0
  1. #!/bin/sh
  2. linux_firmware_20200531.sfs
  3.  huge-5.4.53-fossapup64.tar.bz2
  4. #####################################
  5. #      fix pcmanfm desktop          #
  6. #####################################
  7. sed -i -e 's/Categories=*.*/Categories=FileManager/g'   /usr/share/applications/pcmanfm.desktop
  8. sed -i -e 's/Exec=*.*/Exec=pcmanfm/g'                   /usr/share/applications/pcmanfm.desktop
  9. #####################################
  10. #      update pcmanfm settings      #
  11. #####################################
  12. file_path=/$USER/.config/pcmanfm/default/pcmanfm.conf
  13. path_path=/$USER/.config/pcmanfm/default
  14. if [ -f "$file_path" ]; then
  15.     echo "copying pcmanfm.conf"
  16.     cp -R pcmanfm.conf $path_path
  17. fi
  18. fixmenus     # fix menus
  19. jwm -restart # restart jwm
  20.  
Add Comment
Please, Sign In to add comment