wdisplays command not found

In this troubleshooting guide we learn how to fix wdisplays command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

wdisplays: command not found

or when using sudo you get the following error message

sudo: wdisplays: command not found

Solutions to wdisplays: command not found

How To Fix wdisplays: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu wdisplays is provided by wdisplays package.

wdisplays is:

wdisplays is a graphical application for configuring displays in Wayland compositors. It borrows some code from kanshi. It should work in any compositor that implements the wlr-output-management-unstable-v1 protocol, including sway. The goal of this project is to allow precise adjustment of display settings in kiosks, digital signage, and other elaborate multi-monitor setups.

To fix this problem, we can install more using the command below.

sudo apt-get -y install wdisplays

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install wdisplays.

sudo apt -y install wdisplays

Or if you have aptitude installed you can use the following command.

sudo aptitude install wdisplays

Summary

In this tutorial we learn how to fix wdisplays command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.