| 
			
			 | 
		#1396 | 
| 
			
			
			
			 Wizard 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,777 
				Karma: 16319690 
				Join Date: Sep 2022 
				
				
				
				Device: Kobo Libra 2 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			I've made another update to my battery statistics calculation script. Version 1.2 brings a few improvements: 
		
	
		
		
			
 I had hoped to use bc to do proper floating-point arithmetic, but it seems that Kobo's version of BusyBox doesn't have it, so instead I've resorted to manipulating v_now, v_min, and v_max as strings, which avoids doing any actual arithmetic for the units conversion. Remember that if you have the Libra Colour, you must replace: /sys/class/power_supply/battery/ with /sys/class/power_supply/bd71827_bat/ in order for the script to work. Other Kobo models may require greater changes, as some statistics may not be available. Code: 
	# Battery Statistics Calculator 1.2 (2024-08-28) by Aleron Ives # # This script calculates battery statistics for the Kobo Libra 2. # Check the contents of /sys/class/power_supply/ if you use a different # model to ensure that the statistics you want to track are available. # # You can use NickelMenu to invoke this script like so: # menu_item :main :Battery :cmd_output :500 :/mnt/onboard/.adds/battcalc.sh # Gather the necessary statistics meter=$(cat /sys/class/power_supply/battery/capacity) v_now=$(cat /sys/class/power_supply/battery/voltage_now) v_min=$(cat /sys/class/power_supply/battery/voltage_min) v_max=$(cat /sys/class/power_supply/battery/voltage_max) c_now=$(cat /sys/class/power_supply/battery/charge_now) c_full=$(cat /sys/class/power_supply/battery/charge_full) c_dfull=$(cat /sys/class/power_supply/battery/charge_full_design) # Format the statistics let c_now/=1000; let c_full/=1000; let c_dfull/=1000 # Convert to mAh let charge=$c_now*100/$c_full # Calculate charge percentage from mAh let c_health=$c_full*100/$c_dfull # Calculate health percentage from mAh let v_div=$v_max-$v_min; let v_div/=100 # Calculate charge percentage from V let v_pct=$v_max-$v_now; let v_pct/=$v_div # " let v_pct=100-$v_pct # " v_nowr=$(echo $v_now | cut -b 2-4) # Simulate floating-point arithmetic v_now=$(echo $v_now | cut -b 1) # " v_minr=$(echo $v_min | cut -b 2-3) # " v_min=$(echo $v_min | cut -b 1) # " v_maxr=$(echo $v_max | cut -b 2-3) # " v_max=$(echo $v_max | cut -b 1) # " # Display the results echo Capacity: $c_now mAh / $charge% / $meter% echo Voltage: $v_min.$v_minr V / $v_now.$v_nowr V / $v_max.$v_maxr V / $v_pct% echo Health: $c_full mAh / $c_dfull mAh / $c_health% Last edited by Aleron Ives; 08-28-2024 at 08:40 PM.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1397 | 
| 
			
			
			
			 Member 
			
			![]() Posts: 24 
				Karma: 10 
				Join Date: Sep 2018 
				
				
				
				Device: Libra 2 
				
				
				 | 
	
	|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1398 | 
| 
			
			
			
			 Junior Member 
			
			![]() Posts: 5 
				Karma: 10 
				Join Date: Aug 2023 
				
				
				
				Device: PPW5, Scribe 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			The lastest build from master branch, not tested yet. 
		
	
		
		
		
		
		
		
		
		
		
		
	
	https://drive.filen.io/f/d0f6be6c-e5...bUIFbgLUJuttaY  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1399 | |
| 
			
			
			
			 Member 
			
			![]() Posts: 24 
				Karma: 10 
				Join Date: Sep 2018 
				
				
				
				Device: Libra 2 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1400 | |
| 
			
			
			
			 Junior Member 
			
			![]() Posts: 3 
				Karma: 10 
				Join Date: May 2023 
				
				
				
				Device: Kobo Elipsa 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 menu_item :main :Bluetooth (enable) :nickel_bluetooth :enable menu_item :main :Bluetooth (disable) :nickel_bluetooth :disable menu_item :main :Bluetooth (toggle) :nickel_bluetooth :toggle  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1401 | ||
| 
			
			
			
			 Member 
			
			![]() Posts: 10 
				Karma: 10 
				Join Date: Aug 2024 
				
				
				
				Device: Kobo Libra Colour 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Hello! 
		
	
		
		
		
		
		
		
		
		
		
		
	
	I found a guide on reddit for how to use NickelMenu to create a translation feature on Kobo. However, when I try to use it, I get the following error: Quote: 
	
 Quote: 
	
  | 
||
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1402 | |
| 
			
			
			
			 Member 
			
			![]() Posts: 13 
				Karma: 10 
				Join Date: Sep 2024 
				
				
				
				Device: kobo libra 2 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Hello everyone, I have kobo libra 2, software version 4.38.23038 
		
	
		
		
		
		
		
		
		
		
		
		
	
	I have a small problem, I already done this part Quote: 
	
 That is something new for me... I don't understand how all of this is supposed to look in the file "config" as the result, can someone with the libra 2 send me a config or nm folder file so I can understand how it's supposed to look in the end? ![]() I want to install KOReader but as far as I understood, I first need to install NickelMenu and then install there KOReader  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1403 | |
| 
			
			
			
			 Bibliophagist 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 48,175 
				Karma: 174315444 
				Join Date: Jul 2010 
				Location: Vancouver 
				
				
				Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 My preferred method is to use the installer then uninstall KFMon and delete the kfmon, koreader and plato files in the .adds/nm directory. The attached nm_kp.txt file has the entries to run KOReader and Plato directly from NickelMenu. Simply remove the # in front the menu-item for either or both and copy the file into .adds/nm where you should see that file and the doc file. You can find the KFMON-Uninstaller link in this Kute File Monitor: A smarter file-trigger based launcher thread. Last edited by DNSB; 09-05-2024 at 08:58 PM. Reason: Added link to KFMon uninstaller  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1404 | ||
| 
			
			
			
			 Member 
			
			![]() Posts: 13 
				Karma: 10 
				Join Date: Sep 2024 
				
				
				
				Device: kobo libra 2 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
   Plato is a good reader? I need it for reading PDF books, but  I was recommended KOREADER, it's the first time I've heard about Plato. I also read about cases where devices can be damaged by reading PDFs, but I was told that KOREADER is safe if properly configured.Quote: 
	
  | 
||
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1405 | |
| 
			
			
			
			 Enthusiast 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 37 
				Karma: 24602 
				Join Date: May 2015 
				
				
				
				Device: Kobo Glo HD 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 https://github.com/pgaskin/NickelMen...ent-1546998211  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1406 | |
| 
			
			
			
			 Bibliophagist 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 48,175 
				Karma: 174315444 
				Join Date: Jul 2010 
				Location: Vancouver 
				
				
				Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 For folder navigation, you will need to use KOReader or Plato. Nickel does not have folder navigation. Personally, I use search since it is a lot faster than tapping my way through a directory structure. Nickel can search author, title, series, etc. while KOReader if the calibre generated metadata.calibre is present, can also do searching. KFMon is a program launcher, for instance, you might see a KOReader png image displayed in your Kobo books. Tap on it and KFMon will launch KOReader. To learn more, check out NiLuJe's kfmon GitHub page.  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1407 | 
| 
			
			
			
			 Groupie 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 166 
				Karma: 35462 
				Join Date: Dec 2016 
				Location: Germany 
				
				
				Device: Kobo: Clara BW, Libra 2, Aura One, Aura H2O 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			How is the command to simpy open the (general) settings 
		
	
		
		
		
		
		
		
		
		
		
		
	
	menu_item : reader: Settings : nickel_open : settings .....doesn't work  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1408 | |
| 
			
			
			
			 Teluk Biru 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 161 
				Karma: 348662 
				Join Date: Jan 2023 
				
				
				
				Device: Kobo Clara 2E 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 Code: 
	# nickel_setting - <action>:<setting> # action is one of: # toggle - toggles between true/false # enable - sets to true # disable - sets to false # setting is one of: # invert - FeatureSettings.InvertScreen # lockscreen - PowerSettings.UnlockEnabled (4.12.12111+) # screenshots - FeatureSettings.Screenshots # force_wifi - DeveloperSettings.ForceWifiOn (note: the setting doesn't apply until you toggle WiFi) # auto_usb_gadget - Automatically enable USB mass storage on connection Code: 
	# nickel_open - one of: # discover:storefront - Kobo Store # discover:wishlist - Wishlist # library:library - My Books (with last tab and filter) # library:all - Books # library:authors - Authors # library:series - Series (4.20.14601+) # library:shelves - Collections # library:pocket - Articles # library:dropbox - Dropbox (4.18.13737+) # reading_life:reading_life - Activity (with last tab) # reading_life:stats - Activity # reading_life:awards - Awards # reading_life:words - My Words # store:overdrive - OverDrive (4.10.11655+) (note: if you don't have an active OverDrive account, it will give you a "Network Error") # store:search - Search  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1409 | 
| 
			
			
			
			 Groupie 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 166 
				Karma: 35462 
				Join Date: Dec 2016 
				Location: Germany 
				
				
				Device: Kobo: Clara BW, Libra 2, Aura One, Aura H2O 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			@hatuluang Ok, I don't find any command to open the settings. However thank you for your reply.
		 
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#1410 | 
| 
			
			
			
			 Junior Member 
			
			![]() Posts: 4 
				Karma: 10 
				Join Date: Sep 2024 
				
				
				
				Device: Kobo Clara BW 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Hello guys! I have a question with the nickel menu: I recently updated from a Kobo Clara HD to a Kobo Clara BW, and even thought it seems to be axactly the same, some things don't work well. 
		
	
		
		
		
		
		
		
		
		
		
		
	
	The first thing is the landscape mode: the screen rotates, but the touch is inverted! (if I touch the upper part, the lower part reacts, very weird). The second thing is Vlasovsoft: I used to play chess a lot with it, and now Vlasovsoft doesn't launch at all, when I click on it from the nickel menu, it just freezes the whole e-reader... If you have any ideas on how to solve this, I would be so grateful!  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
![]()  | 
            
        
            
| Tags | 
| kobo, launcher, ldpreload, nickel | 
            
  | 
    
			 
			Similar Threads
		 | 
	||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Kobo eReaders and Heat | PeterT | Kobo Reader | 13 | 08-02-2014 05:35 AM | 
| kobo arc launcher not working | lana loves books | Kobo Tablets | 8 | 03-21-2014 07:40 AM | 
| Orginization on kobo ereaders | crochetgeek2010 | Kobo Reader | 7 | 09-03-2013 03:13 PM | 
| Kobo Announces eReaders Available for Purchase on Kobo.com in Canada and US | markemark | News | 1 | 04-02-2013 02:46 PM | 
| Ereaders with Integrated Dictionary | poohbear_nc | Which one should I buy? | 4 | 04-08-2010 07:42 AM |