Skip to content

nathan818fr/among-us-taskbar-mask

Repository files navigation

Among Us Taskbar Mask · Build Status

A small utility to hide the Among Us taskbar when playing (for more fun!).

Preview

Download

Standalone executable (v0.0.1)
Launch Taskbar Mask, then start Among Us (or vice versa).

Features

  • Hide the taskbar (but displays the progress every 15 seconds).
  • Supports different resolutions and windowed mode.
  • Do not hide other windows when the game is in the background (eg. during an alt+tab).

Known bugs & limitations

  • None

Motivation

When the taskbar is visible, it's easy to discover impostors by spying them doing fake tasks:
The task bar progresses when a crewmate completes a task; but this is not the case with impostors. So by observing a player doing a few tasks we can quickly exculpate or indict him depending on the progress (or not) of the task bar.

Hiding the taskbar therefore make the game more fun (especially in vocal) by allowing imposters who fake their tasks well (with correct timings, etc) to be like any crewmates!

Some sources:

Technical details

Main criteria

The program must be easy to download, share and use.

Its implementation must be simple; and easy to do on different platforms (since Among Us also run on Linux - using proton).

Approach used

Use a transparent window without border nor title bar to draw on the screen.

This allows to create a small, standalone binary (statically linked, without using big toolkits/libraries). And it's functional on many platforms.

Alternative approaches (not used)

  • Inject into the game's OpenGL context to draw directly on it.
  • Read and edit game memory to move/hide progress bar or it's value.