Giter VIP home page Giter VIP logo

Comments (10)

tunglamvghy avatar tunglamvghy commented on June 19, 2024 1

I think you should check CPUFriend.kext.
If you want battery last longer, choose Macbook Air profile

from asus-vivobook-s510ua-hackintosh.

whatnameisit avatar whatnameisit commented on June 19, 2024 1

I have two SSDs installed, so I can't test it.
Anyways, HDDs are for storing data. If you want to access something on it, it needs to be mounted. If not, it can be unmounted. Considering you would need to run the app every time you need to access the disk then again to unmount the disk, I recommend you buy a moderate SSD to save battery.

from asus-vivobook-s510ua-hackintosh.

LeeBinder avatar LeeBinder commented on June 19, 2024 1

now I finally get to reply... sure, two SSDs are the way to go. I don't use the HDD that much so for me this is fine for now, esp. with the keyboard shortcut. In the long run I do plan to replace the HDD with a 2nd SSD.

The "app'ed" script might come in handy for people who don't want to open the laptop case for a disk swap. And I always like to learn new pieces of Applescript and bash, which I like both :)

from asus-vivobook-s510ua-hackintosh.

wonhee0410 avatar wonhee0410 commented on June 19, 2024

I think you should check CPUFriend.kext.
If you want battery last longer, choose Macbook Air profile

Thanks.
But the temperature is always about >= 45C, is it normal ? I think it's should just about 40C.
CPUFriend and One-key-CPUFriend is the same, right ? Could you instruct me how to do that, I'm new to hackintosh, thx.
And another thing is when I clicked "Sleep" until after about 15s it completely sleep, it's strange.

from asus-vivobook-s510ua-hackintosh.

tunglamvghy avatar tunglamvghy commented on June 19, 2024

My Hackintosh is always 44C.

from asus-vivobook-s510ua-hackintosh.

LeeBinder avatar LeeBinder commented on June 19, 2024

https://github.com/acidanthera/CPUFriend/blob/master/Instructions.md

from asus-vivobook-s510ua-hackintosh.

LeeBinder avatar LeeBinder commented on June 19, 2024

I added different CPU performance options.

from asus-vivobook-s510ua-hackintosh.

LeeBinder avatar LeeBinder commented on June 19, 2024

Please apply and test the latest release v.10.0 and report back after some time. Thank you.

from asus-vivobook-s510ua-hackintosh.

LeeBinder avatar LeeBinder commented on June 19, 2024

My Vivo has a SSD and a HDD. With the HDD mounted I get much worse battery life than if it's unmounted. That also applies after setting disksleep to less than the default 10 mins.

I wrote a little Applescript which mounts or unmounts the HDD:

click to expand
# specify the name of (one of) the volume(s) on your MacBook's internal HDD:
set myHDD to "Data"

set abortingMsg to "Volume \"" & myHDD & "\" not found - aborting!!"

set Cap to (do shell script "diskutil info disk0 | grep \"Solid State\"")
tell Cap to set {SSD} to {last word}
if SSD = "No" then
	set diskX to "disk0"
	#display dialog "disk0 = HDD!" buttons {"OK"} default button 1 giving up after 10
else
	set Cap to (do shell script "diskutil info disk1 | grep \"Solid State\"")
	tell Cap to set {SSD} to {last word}
	if SSD = "No" and result does not contain "error" then
		set diskX to "disk1"
		#display dialog "disk1 = HDD!" buttons {"OK"} default button 1 giving up after 10
	else
		set diskX to "disk2"
		#display dialog "disk2 = HDD!" buttons {"OK"} default button 1 giving up after 10
	end if
end if

tell application "Finder"
	if not (exists the disk myHDD) then
		try
			#do shell script "diskutil mountDisk '" & diskX & "'"
			do shell script "diskutil mountDisk " & diskX
		on error
			do shell script "diskutil mountDisk " & diskX with administrator privileges
		end try
		
		if not (exists the disk myHDD) then
			display notification abortingMsg
			return 0
		end if
		
		set result to "Volume(s) mounted successfully"
		
		# optional; uncomment if you want to open the mounted volume in Finder
		(*if (exists the disk myHDD) then
			tell application "Finder"
				activate
				make new Finder window
				set target of Finder window 1 to disk myHDD
				set result to "Volume \"" & myHDD & "\" mounted"
			end tell
		else
			set result to abortingMsg
		end if *)
	else
		--display dialog "unmounting now!" buttons {"OK"} default button 1 giving up after 10
		
		try
			do shell script "diskutil eject '" & diskX & "'"
		on error
			display dialog "ATTENTION: The disk can't be ejected because it still appears to be in use.
			
Do you want to try to force-eject it (NOT recommended because data might be lost!)?" buttons {"No", "Yes"} default button 2 with icon stop
			if the button returned of the result is "Yes" then
				do shell script "diskutil unmountDisk force '" & diskX & "'"
			else
				set result to "Script aborted."
			end if
		end try
	end if
end tell

display notification result with title "(Un)Mount HDD:"

Icon Screenshot

keyboard shortcut

@whatnameisit , any thoughts :)? You feel like testing it? (I know you do ๐Ÿฅ‡)

(Un)Mount HDD 1.0.3.zip

from asus-vivobook-s510ua-hackintosh.

LeeBinder avatar LeeBinder commented on June 19, 2024

This repo has found a new home at the current maintainer's GitHub corner:

https://github.com/LeeBinder/Asus-Vivobook-S510UA-Hackintosh/

If still interested, please download the latest release from over there, read the ReadMe completely at least once, and follow all instructions all the way to the end.

In case an issue arises, please post it via the issues section over there.

This issue will now be closed.

from asus-vivobook-s510ua-hackintosh.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.