Changes between Version 1 and Version 2 of Ticket #9790, comment 3


Ignore:
Timestamp:
09/20/2017 03:46:45 PM (7 years ago)
Author:
bdubbs@…

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9790, comment 3

    v1 v2  
    33I suppose we can use:
    44{{{
    5 export ${XDG_DATA_DIRS:-/usr/share/}
    6 export ${XDG_CONFIG_DIRS:-/etc/xdg/}
    7 export ${XDG_RUNTIME_DIR:-/tmp/xdg-$USER}
     5export XDG_DATA_DIRS=${XDG_DATA_DIRS:-/usr/share/}
     6export XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS:-/etc/xdg/}
     7export XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR:-/tmp/xdg-$USER}
    88}}}
    99See if that works for you.