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
(Created Window Maker page)
 
(changed blocks to syntax highlight)
Line 4: Line 4:
Window Maker can be installed from most [[Package manager|package managers]].
Window Maker can be installed from most [[Package manager|package managers]].


On [[Debian]] and Debian-based distributions:<blockquote>
On [[Debian]] and Debian-based distributions:
<syntaxhighlight lang="">
  # apt install wmaker
  # apt install wmaker
</blockquote>On [[Arch Linux|Arch]] and Arch-based distributions, Window Maker can be only only installed with an AUR helper such as [[yay]]:<blockquote>
</syntaxhighlight>
On [[Arch Linux|Arch]] and Arch-based distributions, Window Maker can be only only installed with an AUR helper such as [[yay]]:
<syntaxhighlight lang="">
  $ yay -S windowmaker
  $ yay -S windowmaker
</blockquote>On [[Gentoo]] and Gentoo-based distributions:<blockquote>
</syntaxhighlight>
On [[Gentoo]] and Gentoo-based distributions:
<syntaxhighlight lang="">
  # emerge -av x11-wm/windowmaker
  # emerge -av x11-wm/windowmaker
</blockquote>On [[RHEL]], [[Fedora]] and Fedora-based distributions:<blockquote>
</syntaxhighlight>
On [[RHEL]], [[Fedora]] and Fedora-based distributions:
<syntaxhighlight lang="">
  # dnf install WindowMaker
  # dnf install WindowMaker
</blockquote>If none of these work or the version is outdated, you may try to install it manually (0.96.0) by running:<blockquote>
</syntaxhighlight>
If none of these work or the version is outdated, you may try to install it manually (0.96.0) by running:
<syntaxhighlight lang="">
  $ wget <nowiki>https://www.windowmaker.org/pub/source/release/WindowMaker-0.96.0.tar.gz</nowiki>
  $ wget <nowiki>https://www.windowmaker.org/pub/source/release/WindowMaker-0.96.0.tar.gz</nowiki>
 
</syntaxhighlight>
<syntaxhighlight lang="">
  $ tar xvf WindowMaker-0.96.0.tar.gz
  $ tar xvf WindowMaker-0.96.0.tar.gz
 
</syntaxhighlight>
<syntaxhighlight lang="">
  $ cd WindowMaker-0.96.0.tar.gz
  $ cd WindowMaker-0.96.0.tar.gz
 
</syntaxhighlight>
<syntaxhighlight lang="">
  $ ./configure --prefix=/usr
  $ ./configure --prefix=/usr
 
</syntaxhighlight>
<syntaxhighlight lang="">
  $ make
  $ make
 
</syntaxhighlight>
  $ sudo make install
<syntaxhighlight lang="">
</blockquote>
  # make install
</syntaxhighlight>

Revision as of 14:44, 11 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:

 # 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:

 # emerge -av x11-wm/windowmaker

On RHEL, Fedora and Fedora-based distributions:

 # 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 <nowiki>https://www.windowmaker.org/pub/source/release/WindowMaker-0.96.0.tar.gz</nowiki>
 $ tar xvf WindowMaker-0.96.0.tar.gz
 $ cd WindowMaker-0.96.0.tar.gz
 $ ./configure --prefix=/usr
 $ make
 # make install