diff --git a/.bin/chrome b/.bin/chrome index 6305993..20e25c2 100755 --- a/.bin/chrome +++ b/.bin/chrome @@ -39,7 +39,6 @@ --disable-in-process-stack-traces \ --no-service-autorun \ --no-experiments \ - --enable-low-end-device-mode \ --use-gl=egl \ --disable-wayland-ime \ --enable-features=RunVideoCaptureServiceInBrowserProcess,WebUIDarkMode \ diff --git a/.bin/whatmem b/.bin/whatmem index d39c936..45b5d23 100755 --- a/.bin/whatmem +++ b/.bin/whatmem @@ -1,7 +1,8 @@ #!/bin/sh + for i in $@ do - RES="$(ps -x -o "comm vsz" | grep -Ei "^$i ")" + RES="$(ps -x -o "comm rss" | grep -Ei "^$i ")" if [ ! -z "$RES" ] then echo "$RES" | xargs -n2 -I{} echo "Adding: {} KB"