This commit is contained in:
Florian du Garage Num 2020-09-17 09:32:09 +00:00
parent 2dba155c35
commit d775530568
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# Installer Adobe pdf Reader (acroread) sur Debian 10
!!! note "Script d'installation"
```
#
# Add x86 architecture
#
@ -18,4 +19,6 @@
#
# Clean
#
rm AdbeRdr9.5.5-1_i386linux_enu.deb
rm AdbeRdr9.5.5-1_i386linux_enu.deb
```

View File

@ -7,6 +7,7 @@ In the dash view, you can have applications organized by categories like this:
Use this simple script for that:
!!! note "Deployment script"
```
gsettings set org.gnome.desktop.app-folders folder-children "['All', 'Game', 'Utilities', 'Graphics', 'AudioVideo', 'Education', 'Network', 'Office', 'Development']"
APP_FOLDERS=(All Game Utilities Graphics AudioVideo Education Network Office Development)
for i in "${APP_FOLDERS[@]}"; do
@ -33,5 +34,6 @@ Use this simple script for that:
gsettings set org.gnome.desktop.app-folders.folder:/org/gnome/desktop/app-folders/folders/$i/ categories "['Development']";;
esac
done
```