Posted: . At: 9:26 AM. This was 4 months ago. Post ID: 19018
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.



Sponsored



Install FVWM95 on Alma Linux and replicate Windows `95 on modern Linux.


Installing FVWM95 is easy on a modern Linux distribution. I used this branch of the code, this will compile and run on a modern system.

Download the source code.

(jcartwright@localhost) 192.168.1.5 ~  $ git clone https://github.com/mintsuki/fvwm95.git

Once it has downloaded, navigate to the source tree.

(jcartwright@localhost) 192.168.1.5 ~  $ cd fvwm95/

Then run the bootstrap script to run all autoconf tasks.

(jcartwright@localhost) 192.168.1.5 ~  $ ./bootstrap

Once this is completed, the configure script will be ready. Run this script and if there are no problems, then run ‘make’.

(jcartwright@localhost) 192.168.1.5 ~  $ ./configure

This will compile all of the source code and build all required libraries and executables.

(jcartwright@localhost) 192.168.1.5 ~  $ make ; make install

And ‘make install’ will install the compiled software to /usr/local.

Now the window manager is installed.

Now we need to add it to the GDM login manager to make it usable. Just create this .desktop file to add it to GDM.

/usr/share/xsessions/fvwm95.desktop
[Desktop Entry]
Name=FVWM95
Comment=This session logs you into FVWM95
Exec=fvwm95
TryExec=fvwm95
Icon=
Type=Application
DesktopNames=FVWM95
Keywords=launch;FVWM95;desktop;session;

This is the /usr/share/xsessions/fvwm95.desktop file. This is how we can add a third-party window manager to GDM.

After this, the FVWM95 window manager will be installed and ready for use. This is a very easy-to-install Window Manager.

Use the sample fvwm95rc file included with the source code. Install this as the ~/.fvwm95rc file and then the menus may be edited. Follow this guide to configure this file.

FVWM Beginners Guide
https://zensites.net/fvwm/guide/menu.html.

Here is a sample. I have edited this to allow running Gnome Terminal and Firefox.

Bash
#------------------------------------------------------------------------------
#--------- Taskbar's start menu
#------------------------------------------------------------------------------

DestroyMenu "StartMenu"
AddToMenu "[email protected]@^#808080^" \
  "&Terminal%mini-term.xpm%"		Exec gnome-terminal
+ "&Web browser%mini-nscape.xpm%"	Exec firefox
+ "&File manager%mini-filemgr.xpm%"	Exec nautilus
+ ""				Nop
+ "&Programs%programs.xpm%"	Popup Programs
#+ "&Documents%documents.xpm%"	Popup Documents
+ "&Settings%settings.xpm%"	Popup Settings
+ ""				Nop
+ "&Help%help.xpm%"		Exec  xman 
#+ "&Run...%run.xpm%"		Exec  run 
+ ""				Nop 
+ "Logo&ut%shutdown.xpm%"	Popup Shutdown

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.