Changes between Version 1 and Version 2 of Ticket #9790, comment 3
- Timestamp:
- 09/20/2017 03:46:45 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9790, comment 3
v1 v2 3 3 I suppose we can use: 4 4 {{{ 5 export ${XDG_DATA_DIRS:-/usr/share/}6 export ${XDG_CONFIG_DIRS:-/etc/xdg/}7 export ${XDG_RUNTIME_DIR:-/tmp/xdg-$USER}5 export XDG_DATA_DIRS=${XDG_DATA_DIRS:-/usr/share/} 6 export XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS:-/etc/xdg/} 7 export XDG_RUNTIME_DIR=${XDG_RUNTIME_DIR:-/tmp/xdg-$USER} 8 8 }}} 9 9 See if that works for you.