diff options
author | Perberos <[email protected]> | 2011-11-07 21:10:16 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-07 21:10:16 -0300 |
commit | 421415f7cb1ba9c8a97a1837d4f789242c2fb0e6 (patch) | |
tree | ff577138b5844466f1a22527c4f92e805a607c7c /data/pluma-bugreport.sh.in | |
parent | 1d63a49a77ab8f7d01daef6ce18e57100508067b (diff) | |
download | pluma-421415f7cb1ba9c8a97a1837d4f789242c2fb0e6.tar.bz2 pluma-421415f7cb1ba9c8a97a1837d4f789242c2fb0e6.tar.xz |
using ./config/ instead of ./mate2/
Diffstat (limited to 'data/pluma-bugreport.sh.in')
-rwxr-xr-x | data/pluma-bugreport.sh.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/data/pluma-bugreport.sh.in b/data/pluma-bugreport.sh.in index d59d7969..e62a35ec 100755 --- a/data/pluma-bugreport.sh.in +++ b/data/pluma-bugreport.sh.in @@ -20,21 +20,21 @@ echo_padded () #if (which mateconftool-2 >/dev/null) #then # echo "MateConf configuration dump:" -# mateconftool-2 --dump /apps/pluma-2 | grep -Ev "</?(entry|mateconfentryfile|entrylist|value|schema_key)" | cut -c4- +# mateconftool-2 --dump /apps/pluma | grep -Ev "</?(entry|mateconfentryfile|entrylist|value|schema_key)" | cut -c4- # echo #fi echo "Active plugins:" -mateconftool-2 --get /apps/pluma-2/plugins/active-plugins \ +mateconftool-2 --get /apps/pluma/plugins/active-plugins \ | sed -r -e 's/^\[(.*)\]$/\1/' -e 's/,/\n/g' \ | sed -e 's/^.*$/ - \0/' echo # Manually installed plugins (in $HOME) -if [ -d $HOME/.mate2/pluma/plugins ] +if [ -d $HOME/.config/pluma/plugins ] then echo "Plugins in \$HOME:" - ls $HOME/.mate2/pluma/plugins/*.pluma-plugin \ + ls $HOME/.config/pluma/plugins/*.pluma-plugin \ | sed -r -e 's#.*/([^/]*)\.pluma-plugin$# - \1#' else echo "No plugin installed in \$HOME." |