The environment variable `SCM_BREEZE_DISABLE_ASSETS_MANAGEMENT=true` when set to will disable the asset management portion of the shell integration.
18 lines
732 B
Bash
18 lines
732 B
Bash
#
|
|
# Design Assets Management Config
|
|
# ----------------------------------------------------------------
|
|
# Directory where design assets are stored
|
|
export root_design_dir="$HOME/Dropbox/Design"
|
|
# Directory where symlinks are created within each project
|
|
export project_design_dir="design_assets"
|
|
# Directories for per-project design assets
|
|
export design_base_dirs="Documents Flowcharts Images Backgrounds Logos Icons Mockups Screenshots"
|
|
export design_av_dirs="Animations Videos Flash Music Samples"
|
|
# Directories for global design assets (not symlinked into projects)
|
|
export design_ext_dirs="Fonts IconSets"
|
|
|
|
# Set =true to disable the design/assets management features
|
|
# export SCM_BREEZE_DISABLE_ASSETS_MANAGEMENT=true
|
|
|
|
# vi: ft=sh
|