Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Window Maker: Difference between revisions

From atl.wiki
m (Update Links)
m (Fixed code formatting in the Installation section)
Line 5: Line 5:


On [[Debian]] and Debian-based distributions:
On [[Debian]] and Debian-based distributions:
<syntaxhighlight lang="">
<syntaxhighlight lang="bash">
# apt install wmaker
sudo apt install wmaker
</syntaxhighlight>
</syntaxhighlight>


On [[Arch Linux|Arch]] and Arch-based distributions, Window Maker can be only only installed with an AUR helper such as [[yay]]:
On [[Arch Linux|Arch]] and Arch-based distributions, Window Maker can be only only installed with an AUR helper such as [[yay]]:
<syntaxhighlight lang="">
<syntaxhighlight lang="bash">
  $ yay -S windowmaker
  yay -S windowmaker
</syntaxhighlight>
</syntaxhighlight>


On [[Gentoo]] and Gentoo-based distributions:
On [[Gentoo]] and Gentoo-based distributions:
<syntaxhighlight lang="">
<syntaxhighlight lang="bash">
  # emerge -av x11-wm/windowmaker
  sudo emerge -av x11-wm/windowmaker
</syntaxhighlight>
</syntaxhighlight>


On [[RHEL]], [[Fedora]] and Fedora-based distributions:
On [[RHEL]], [[Fedora]] and Fedora-based distributions:
<syntaxhighlight lang="">
<syntaxhighlight lang="bash">
# dnf install WindowMaker
sudo dnf install WindowMaker
</syntaxhighlight>
</syntaxhighlight>


If none of these work or the version is outdated, you may try to install it manually (0.96.0) by running:
If none of these work or the version is outdated, you may try to install it manually (0.96.0) by running:
<syntaxhighlight lang="">
<syntaxhighlight lang="bash" line="1">
$ wget https://www.windowmaker.org/pub/source/release/WindowMaker-0.96.0.tar.gz
wget https://www.windowmaker.org/pub/source/release/WindowMaker-0.96.0.tar.gz
</syntaxhighlight>
tar xvf WindowMaker-0.96.0.tar.gz
 
cd WindowMaker-0.96.0.tar.gz
<syntaxhighlight lang="">
./configure --prefix=/usr
$ tar xvf WindowMaker-0.96.0.tar.gz
make
</syntaxhighlight>
sudo make install
 
<syntaxhighlight lang="">
$ cd WindowMaker-0.96.0.tar.gz
</syntaxhighlight>
 
<syntaxhighlight lang="">
$ ./configure --prefix=/usr
</syntaxhighlight>
 
<syntaxhighlight lang="">
$ make
</syntaxhighlight>
 
<syntaxhighlight lang="">
# make install
</syntaxhighlight>
</syntaxhighlight>


[[Category:Window Managers]]
[[Category:Window Managers]]

Revision as of 20:08, 16 June 2024

Window Maker is a window manager for X11 designed to emulate the look and feel of NeXTSTEP as an environment compatible with OpenStep libraries. It has been developed from scratch since 1997 by Alfredo Kojima in C.

Installation

Window Maker can be installed from most package managers.

On Debian and Debian-based distributions:

sudo apt install wmaker

On Arch and Arch-based distributions, Window Maker can be only only installed with an AUR helper such as yay:

 yay -S windowmaker

On Gentoo and Gentoo-based distributions:

 sudo emerge -av x11-wm/windowmaker

On RHEL, Fedora and Fedora-based distributions:

sudo dnf install WindowMaker

If none of these work or the version is outdated, you may try to install it manually (0.96.0) by running:

wget https://www.windowmaker.org/pub/source/release/WindowMaker-0.96.0.tar.gz
tar xvf WindowMaker-0.96.0.tar.gz
cd WindowMaker-0.96.0.tar.gz
./configure --prefix=/usr
make
sudo make install