forked from Mojave/ExactTime
		
	*Added an option to add estimated time to the exact time. Example: "48m ago • 09:41" *Added an option to add minutes to "Xh ago" Example: "5h 47m ago" *You can also combine these two options to get something like this: "5h 47m ago • 09:41" *Added an icon to the preferences.
		
			
				
	
	
		
			13 lines
		
	
	
		
			271 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			271 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
ARCHS = armv7 arm64
 | 
						|
include $(THEOS)/makefiles/common.mk
 | 
						|
 | 
						|
TWEAK_NAME = ExactTime
 | 
						|
ExactTime_FILES = Tweak.xm
 | 
						|
 | 
						|
include $(THEOS_MAKE_PATH)/tweak.mk
 | 
						|
 | 
						|
after-install::
 | 
						|
	install.exec "killall -9 SpringBoard"
 | 
						|
SUBPROJECTS += exacttimeprefs
 | 
						|
include $(THEOS_MAKE_PATH)/aggregate.mk
 |