Advertisement
To-Slalom

install pcmanfm offline

Apr 7th, 2021
861
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.55 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. array=(
  4.  './libfm4_1.3.1-1_amd64.deb'
  5.  './libfm-data_1.3.1-1_all.deb'
  6.  './libfm-extra4_1.3.1-1_amd64.deb'
  7.  './libfm-gtk4_1.3.1-1_amd64.deb'
  8.  './libfm-gtk-data_1.3.1-1_all.deb'
  9.  './libmenu-cache3_1.1.0-1_amd64.deb'
  10.  './libmenu-cache-bin_1.1.0-1_amd64.deb'
  11.  './lxmenu-data_0.1.5-2_all.deb'
  12.  './pcmanfm_1.3.1-1_amd64.deb'
  13. )
  14. count_apps=${#array[@]}
  15. for (( i = 0 ; i < ${count_apps} ; i++ )) ; do
  16.     pkg i ${array[i]}
  17.     #dpkg -X  ${array[i]} ./
  18.     #echo pkg i ${array[i]}
  19. done
  20. fixmenus     # fix menus
  21. jwm -restart # restart jwm
  22. #jwm -reload
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement