A distraction-free, minimal homescreen for Android.
Find a file
Josia Pietsch 679c90130d
re-enable the light theme
close #75
when the light theme is selected, the background is always set to solid, to prevent problems with dark wallpapers
2025-01-21 23:05:49 +01:00
.github update CI pipeline to use default build flavor 2025-01-12 21:08:03 +01:00
.scripts update release script and BUILD.md 2025-01-13 02:50:41 +01:00
app re-enable the light theme 2025-01-21 23:05:49 +01:00
fastlane/metadata/android update short description 2025-01-13 03:01:28 +01:00
gradle/wrapper update AGP 2025-01-11 21:37:22 +01:00
img add some color to icon 2024-09-25 19:52:43 +02:00
.gitignore removed .idea 2024-10-03 23:00:31 +02:00
build.gradle update AGP 2025-01-11 21:37:22 +01:00
BUILD.md update release script and BUILD.md 2025-01-13 02:50:41 +01:00
gradle.properties increase version code, enable gradle configuration cache 2024-08-29 01:00:50 +02:00
gradlew Add a basic but functional app. Needs improvement. 2020-05-12 14:52:56 +02:00
gradlew.bat Add a basic but functional app. Needs improvement. 2020-05-12 14:52:56 +02:00
LICENSE update LICENSE 2025-01-11 23:17:03 +01:00
README.md update README.md 2025-01-13 15:53:42 +01:00
SECURITY.md created SECURITY.md 2024-12-06 02:00:04 +01:00
settings.gradle Add a basic but functional app. Needs improvement. 2020-05-12 14:52:56 +02:00

Android CI Chat on Matrix Chat on Discord

μLauncher

µLauncher is an Android home screen that lets you launch apps using swipe gestures and button presses. It is minimal, efficient and free of distraction.

Your home screen only displays the date, time and a wallpaper. Pressing back or swiping up (this can be configured) opens a list of all installed apps, which can be searched efficiently.

This is a fork of finnmglas's app Launcher.

Get it on F-Droid Get it on Accrescent Get it on Obtainium Get it on GitHub

You can also get it on Google Play, but I don't recommend that.

screenshot screenshot screenshot screenshot screenshot screenshot screenshot

Contributing

There are several ways to contribute to this app:

  • You can add or improve translations.
    translation status
  • If you find a bug or have an idea for a new feature you can join the chat or open an issue. Please note that I work on this project in my free time. Thus I might not respond immediately and not all ideas will be implemented.
  • You can implement a new feature yourself:
    • Create a fork of this repository:
    • Create a new branch named feature/<your feature> or fix/<your fix> and commit your changes.
    • Open a new pull request.

See BUILD.md for instructions how to build this project. The CI pipeline automatically creates debug builds. Note that those are not signed.

Notable changes compared to Finn's Launcher:

  • Edge gestures: There is a setting to allow distinguishing swiping at the edges of the screen from swiping in the center.
  • Compatible with work profile, so apps like Shelter can be used.
  • The home button now works as expected.

Visual

  • This app uses the system wallpaper instead of a custom solution.
  • The font has been changed to Hack.
  • Font Awesome Icons were replaced by Material icons.
  • The gear button on the home screen was removed. Instead pressing back opens the list of applications and the app settings are accessible from there.
  • The search algorithm was modified to prefer matches at the beginning of the app name, i.e. when searching for "te", "termux" is sorted before "notes".
  • The search bar was moved to the bottom of the screen.

Technical

  • Small improvements to the gesture detection.
  • Different apps set as default.
  • Package name was changed to de.jrpie.android.launcher to avoid clashing with the original app.
  • Dropped support for API < 21 (i.e. pre Lollypop)
  • Some refactoring