View | Details | Raw Unified | Return to bug 220051 | Differences between
and this patch

Collapse All | Expand All

(-)user-dirs-update-gnome (+11 lines)
Line 0 Link Here
1
#!/bin/sh
2
3
# Create various XDG directories, and write ~/.config/user-dirs.dirs, etc.
4
# That file is read by glib to get XDG_PICTURES_DIR, etc
5
6
if [ "$DESKTOP_SESSION" = "gnome" ]; then
7
       if type xdg-user-dirs-update &>/dev/null; then
8
               xdg-user-dirs-update
9
       fi
10
fi
11

Return to bug 220051