Results 8 comments of Miguel

@coldpumpkin Well, this is a bad default value. If you edit the Minifier Settings-User and write: ```js { // Custom File Save "minify_options" : { "ask_file_name" : true, "default_name" :...

I can confirm this bug with Ubuntu 18.04 64b and latest ppa release 2.5.1

Thank you, hgdrn. It works!

I can confirm that hgdrn's patch works perfectly. Thank you ;-)

Suggested solution: ``` get_broken_maps() { (...) for service in $(get_services); do unit_path="$(systemctl --property ControlGroup --value show "$service")" # hack to fix to systemd internal cgroup escaping on slice unit_path="$(printf "$unit_path"|sed...

> @injiniero Looks like it works for systemd-udevd service. I'm still get an Error for shadowsocks service. Can you check this? Get the path returned by: ```systemctl --property ControlGroup --value...

> `/sys/fs/cgroup/system.slice/system-shadowsocks\x2drust.slice/[email protected]/cgroup.procs ` I assume that the path returned was `/sys/fs/cgroup/system.slice/system-shadowsocks\x2drust.slice/[email protected]/` When you cat the cgroup.procs in that path, you get a pid (914). So the path is valid and...

Your shell changes the escaped char "\x2d" for "-" as in: `/system.slice/system-shadowsocks\x2drust.slice/[email protected] ` `/system.slice/system-shadowsocks-rust.slice/[email protected]` because of this the script can't find the right service path At the beginning of the...