Add Folders to Dash to Dock (GNOME) — Quick & Easy

Опубликовано: 05 Август 2026
на канале: Amit Explains Tech
579
7

Thanks for watching :)

Want folders on your GNOME dock? In this video I show simple ways to add folders to Dash to Dock on GNOME:

🧩 Commands used
Create launcher:
mkdir -p ~/.local/share/applications
vim ~/.local/share/applications/documents-folder.desktop

Sample launcher:
[Desktop Entry]
Name=Documents
Exec=nautilus Documents
Icon=folder-documents
Type=Application
Terminal=false

Now open App Grid → search “Documents” → Add to Favorites (pins to dock).

Multiple folders scripts:
#!/bin/bash
choice=$(zenity --list --title="Open Folder" --column="Folder" "Documents" "Downloads" "Projects")
case $choice in
"Documents") nautilus ~/Documents ;;
"Downloads") nautilus ~/Downloads ;;
"Projects") nautilus ~/Projects ;;
esac

Now make script executable chmod +x "Script Name"

👍 If this helped, Like, Subscribe, and Share.
🔔 Request a tutorial: comment below!
#gnomes #linux #ubuntu #fedora #DashToDock #LinuxTips #customization