├── .gitignore ├── AUTHORS ├── BUGFORM ├── BUGS ├── COPYING ├── COPYING.WTFPL ├── ChangeLog ├── FAQ ├── Makefile.am ├── NEWS ├── README ├── README.definable-cursor ├── README.md ├── TODO ├── The-perfect-Window-Maker-patch.txt ├── WINGs ├── BUGS ├── ChangeLog ├── Documentation │ └── Makefile.am ├── Examples │ ├── Makefile.am │ ├── README │ ├── colorpick.c │ ├── fontl.c │ └── puzzle.c ├── Extras │ ├── Makefile.am │ ├── test.c │ ├── wtabledelegates.c │ ├── wtabledelegates.h │ ├── wtableview.c │ └── wtableview.h ├── GNUstepLib │ ├── GNUmakefile │ ├── GNUmakefile.postamble │ ├── GNUmakefile.preamble │ ├── GNUstepLib.h │ └── GNUstepLib.m ├── Makefile.am ├── NEWS ├── README ├── Resources │ ├── Images.tiff │ ├── Images.xcf │ ├── Images.xpm │ ├── Makefile.am │ ├── defaultIcon.tiff │ └── defaultIcon.xpm ├── TODO ├── Tests │ ├── Makefile.am │ ├── logo.xpm │ ├── mywidget.c │ ├── mywidget.h │ ├── testmywidget.c │ ├── upbtn.xpm │ ├── wm.html │ ├── wm.png │ ├── wmfile.c │ ├── wmquery.c │ └── wtest.c ├── WINGs │ ├── Makefile.am │ ├── WINGs.h │ ├── WINGsP.h │ └── WUtil.h ├── array.c ├── bagtree.c ├── configuration.c ├── data.c ├── dragcommon.c ├── dragdestination.c ├── dragsource.c ├── error.c ├── error.h ├── findfile.c ├── handlers.c ├── hashtable.c ├── make-rgb ├── memory.c ├── menuparser.c ├── menuparser.h ├── menuparser_macros.c ├── misc.c ├── notification.c ├── po │ ├── Makefile.am │ ├── README │ ├── bg.po │ ├── ca.po │ ├── cs.po │ ├── de.po │ ├── fr.po │ ├── fy.po │ ├── hu.po │ ├── nl.po │ └── sk.po ├── proplist.c ├── rgb.h ├── selection.c ├── string.c ├── tree.c ├── userdefaults.c ├── userdefaults.h ├── usleep.c ├── wapplication.c ├── wappresource.c ├── wballoon.c ├── wbox.c ├── wbrowser.c ├── wbutton.c ├── wcolor.c ├── wcolorpanel.c ├── wcolorwell.c ├── wconfig.h ├── wevent.c ├── wfilepanel.c ├── wfont.c ├── wfontpanel.c ├── wframe.c ├── widgets.c ├── winputmethod.c ├── wlabel.c ├── wlist.c ├── wmenuitem.c ├── wmisc.c ├── wpanel.c ├── wpixmap.c ├── wpopupbutton.c ├── wprogressindicator.c ├── wruler.c ├── wscroller.c ├── wscrollview.c ├── wslider.c ├── wsplitview.c ├── wtabview.c ├── wtext.c ├── wtextfield.c ├── wutil.c ├── wview.c └── wwindow.c ├── WPrefs.app ├── Appearance.c ├── Configurations.c ├── Docks.c ├── Expert.c ├── Focus.c ├── FontSimple.c ├── Icons.c ├── KeyboardSettings.c ├── KeyboardShortcuts.c ├── Makefile.am ├── Menu.c ├── MenuPreferences.c ├── MouseSettings.c ├── Paths.c ├── Preferences.c ├── README ├── TexturePanel.c ├── TexturePanel.h ├── Themes.c ├── WPrefs.c ├── WPrefs.h ├── WPrefs.tiff ├── WPrefs.xpm ├── WindowHandling.c ├── Workspace.c ├── double.c ├── editmenu.c ├── editmenu.h ├── main.c ├── po │ ├── Makefile.am │ ├── README │ ├── bg.po │ ├── ca.po │ ├── cs.po │ ├── de.po │ ├── es.po │ ├── et.po │ ├── fi.po │ ├── fr.po │ ├── fy.po │ ├── hr.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── ko.po │ ├── nl.po │ ├── pt.po │ ├── ru.po │ ├── sk.po │ ├── tr.po │ ├── uk.po │ ├── zh_CN.po │ └── zh_TW.po ├── tiff │ ├── Makefile.am │ ├── README │ ├── advancetonewworkspace.tiff │ ├── animations.tiff │ ├── appearance.tiff │ ├── clip.tiff │ ├── configs.tiff │ ├── cycleworkspaces.tiff │ ├── dock.tiff │ ├── dockclipdrawersection.tiff │ ├── dontlinkworkspaces.tiff │ ├── drawer.tiff │ ├── ergonomic.tiff │ ├── expert.tiff │ ├── fonts.tiff │ ├── iconprefs.tiff │ ├── keyboard.tiff │ ├── keyboardprefs.tiff │ ├── keyshortcuts.tiff │ ├── menualign1.tiff │ ├── menualign2.tiff │ ├── menuprefs.tiff │ ├── menus.tiff │ ├── miscprefs2.tiff │ ├── moreanim.tiff │ ├── mousesettings.tiff │ ├── mousespeed.tiff │ ├── msty1.tiff │ ├── msty2.tiff │ ├── msty3.tiff │ ├── newstyle.tiff │ ├── nextstyle.tiff │ ├── nonopaque.tiff │ ├── noopaqueresize.tiff │ ├── oldstyle.tiff │ ├── opaque.tiff │ ├── opaqueresize.tiff │ ├── paths.tiff │ ├── smallwindow.tiff │ ├── smooth.tiff │ ├── sound.tiff │ ├── speed0.tiff │ ├── speed0s.tiff │ ├── speed1.tiff │ ├── speed1s.tiff │ ├── speed2.tiff │ ├── speed2s.tiff │ ├── speed3.tiff │ ├── speed3s.tiff │ ├── speed4.tiff │ ├── speed4s.tiff │ ├── tdel.tiff │ ├── tedit.tiff │ ├── temp.tiff │ ├── textr.tiff │ ├── theme.tiff │ ├── timer0.tiff │ ├── timer0s.tiff │ ├── timer1.tiff │ ├── timer1s.tiff │ ├── timer2.tiff │ ├── timer2s.tiff │ ├── timer3.tiff │ ├── timer3s.tiff │ ├── timer4.tiff │ ├── timer4s.tiff │ ├── timer5.tiff │ ├── timer5s.tiff │ ├── tnew.tiff │ ├── whandling.tiff │ ├── windowfocus.tiff │ ├── workspace.tiff │ ├── workspacename.tiff │ └── xis.tiff ├── xmodifier.c └── xpm │ ├── Makefile.am │ ├── advancetonewworkspace.xpm │ ├── animations.xpm │ ├── appearance.xpm │ ├── clip.xpm │ ├── configs.xpm │ ├── cycleworkspaces.xpm │ ├── dock.xpm │ ├── dockclipdrawersection.xpm │ ├── dontlinkworkspaces.xpm │ ├── drawer.xpm │ ├── ergonomic.xpm │ ├── expert.xpm │ ├── fonts.xpm │ ├── iconprefs.xpm │ ├── keyboard.xpm │ ├── keyboardprefs.xpm │ ├── keyshortcuts.xpm │ ├── menualign1.xpm │ ├── menualign2.xpm │ ├── menuprefs.xpm │ ├── menus.xpm │ ├── moreanim.xpm │ ├── mousesettings.xpm │ ├── mousespeed.xpm │ ├── msty1.xpm │ ├── msty2.xpm │ ├── msty3.xpm │ ├── newstyle.xpm │ ├── nextstyle.xpm │ ├── nonopaque.xpm │ ├── noopaqueresize.xpm │ ├── oldstyle.xpm │ ├── opaque.xpm │ ├── opaqueresize.xpm │ ├── paths.xpm │ ├── smallwindow.xpm │ ├── smooth.xpm │ ├── sound.xpm │ ├── speed0.xpm │ ├── speed0s.xpm │ ├── speed1.xpm │ ├── speed1s.xpm │ ├── speed2.xpm │ ├── speed2s.xpm │ ├── speed3.xpm │ ├── speed3s.xpm │ ├── speed4.xpm │ ├── speed4s.xpm │ ├── tdel.xpm │ ├── tedit.xpm │ ├── temp.xpm │ ├── textr.xpm │ ├── theme.xpm │ ├── timer0.xpm │ ├── timer0s.xpm │ ├── timer1.xpm │ ├── timer1s.xpm │ ├── timer2.xpm │ ├── timer2s.xpm │ ├── timer3.xpm │ ├── timer3s.xpm │ ├── timer4.xpm │ ├── timer4s.xpm │ ├── timer5.xpm │ ├── timer5s.xpm │ ├── tnew.xpm │ ├── whandling.xpm │ ├── windowfocus.xpm │ ├── workspace.xpm │ ├── workspacename.xpm │ └── xis.xpm ├── WindowMaker ├── Backgrounds │ ├── BlueImage.jpeg │ └── Makefile.am ├── Defaults │ ├── Makefile.am │ ├── WMGLOBAL │ ├── WMState.in │ ├── WMWindowAttributes.in │ └── WindowMaker.in ├── IconSets │ └── Makefile.am ├── Icons │ ├── BitchX.tiff │ ├── BitchX.xpm │ ├── Drawer.tiff │ ├── Drawer.xpm │ ├── Ear.png │ ├── Ftp.png │ ├── GNUstep.tiff │ ├── GNUstep.xpm │ ├── GNUstep3D.tiff │ ├── GNUstep3D.xpm │ ├── GNUstepGlow.tiff │ ├── GNUstepGlow.xpm │ ├── GNUterm.tiff │ ├── GNUterm.xpm │ ├── GreenWilber.png │ ├── ICQ.png │ ├── Jabber.png │ ├── Magnify.tiff │ ├── Magnify.xpm │ ├── Makefile.am │ ├── Mouth.png │ ├── Mozilla.png │ ├── Pen.png │ ├── Pencil.png │ ├── README │ ├── Real.png │ ├── Shell.png │ ├── Speaker.png │ ├── Terminal.tiff │ ├── Terminal.xpm │ ├── TerminalGNUstep.tiff │ ├── TerminalGNUstep.xpm │ ├── TerminalLinux.tiff │ ├── TerminalLinux.xpm │ ├── Wine.png │ ├── XChat.png │ ├── clip.tiff │ ├── clip.xpm │ ├── defaultAppIcon.tiff │ ├── defaultAppIcon.xpm │ ├── defaultterm.tiff │ ├── defaultterm.xpm │ ├── draw.tiff │ ├── draw.xpm │ ├── linuxterm.tiff │ ├── linuxterm.xpm │ ├── mixer.tiff │ ├── mixer.xpm │ ├── notepad.tiff │ ├── notepad.xpm │ ├── pdf.tiff │ ├── pdf.xpm │ ├── ps.tiff │ ├── ps.xpm │ ├── real.tiff │ ├── real.xpm │ ├── sgiterm.tiff │ ├── sgiterm.xpm │ ├── staroffice2.tiff │ ├── staroffice2.xpm │ ├── timer.tiff │ ├── timer.xpm │ ├── wilber.tiff │ ├── wilber.xpm │ ├── write.tiff │ ├── write.xpm │ ├── xdvi.tiff │ ├── xdvi.xpm │ ├── xv.tiff │ └── xv.xpm ├── Makefile.am ├── Pixmaps │ ├── Makefile.am │ ├── swback.png │ ├── swback2.png │ ├── swtile.png │ ├── tile.tiff │ └── tile.xpm ├── README ├── README.themes ├── Styles │ ├── Adwaita.style │ ├── Autumn.style │ ├── Black.style │ ├── BlackTexture.style │ ├── Blue.style │ ├── BlueDawn.style │ ├── BlueishGreen.style │ ├── Brown.style │ ├── Brownish.style │ ├── Chumbo.style │ ├── Copper.style │ ├── DarkBlue.style │ ├── DarkRed.style │ ├── Emerald.style │ ├── Fire.style │ ├── Food.style │ ├── Golden.style │ ├── Green.style │ ├── GreyBlue.style │ ├── Gtk.style │ ├── IRednBlue.style │ ├── Interlace.style │ ├── LightBlue.style │ ├── Makefile.am │ ├── NewBlue.style │ ├── NightSky.style │ ├── Pastel.style │ ├── Pink.style │ ├── Pumpkin.style │ ├── Purple.style │ ├── Purplish.style │ ├── Red.style │ ├── RednBlue.style │ ├── Spring.style │ ├── Summer.style │ ├── Traditional.style │ └── VioletBlue.style ├── Themes │ ├── Blau.style │ ├── Default.style │ ├── Makefile.am │ ├── OpenStep.style │ ├── Pastel.style │ └── SteelBlueSilk.style ├── appearance.menu.fy.in ├── appearance.menu.in ├── appearance.menu.nl.in ├── autostart.sh ├── background.menu ├── background.menu.fy ├── background.menu.nl ├── exitscript.sh ├── menu.bg.in ├── menu.ca ├── menu.cz ├── menu.da ├── menu.de ├── menu.el ├── menu.es ├── menu.fi.in ├── menu.fr ├── menu.fy.in ├── menu.gl ├── menu.he ├── menu.hr ├── menu.hu.in ├── menu.in ├── menu.it ├── menu.ja ├── menu.ko.in ├── menu.nl.in ├── menu.no ├── menu.pl ├── menu.pt ├── menu.ro.in ├── menu.ru ├── menu.se ├── menu.sk.in ├── menu.sl ├── menu.tr ├── menu.zh_CN ├── menu.zh_TW.in ├── plmenu.bg.in ├── plmenu.da ├── plmenu.de ├── plmenu.es.in ├── plmenu.fi.in ├── plmenu.fr ├── plmenu.fy.in ├── plmenu.hr ├── plmenu.in ├── plmenu.it ├── plmenu.ja.in ├── plmenu.ko.in ├── plmenu.nl.in ├── plmenu.pl.in ├── plmenu.ro.in ├── plmenu.sk.in ├── plmenu.zh_CN.in ├── plmenu.zh_TW.in └── wmmacros.in ├── autogen.sh ├── checkpatch.pl ├── configure.ac ├── distros ├── WindowMaker-WMRootMenu-fedora ├── WindowMaker-application.desktop ├── WindowMaker-xsession.desktop └── wmaker-crm-next.spec ├── doc ├── Makefile.am ├── WPrefs.1 ├── WindowMaker.1 ├── build │ ├── Compilation.texi │ ├── Makefile.am │ ├── Readme │ └── Translations.texi ├── cs │ ├── Makefile.am │ ├── geticonset.1 │ ├── getstyle.1 │ ├── seticons.1 │ ├── setstyle.1 │ ├── wdwrite.1 │ ├── wmaker.1 │ ├── wmsetbg.1 │ ├── wxcopy.1 │ └── wxpaste.1 ├── geticonset.1 ├── getstyle.1 ├── ru │ ├── Makefile.am │ ├── geticonset.1 │ ├── getstyle.1 │ ├── seticons.1 │ ├── setstyle.1 │ ├── wdwrite.1 │ ├── wmaker.1 │ ├── wmsetbg.1 │ ├── wxcopy.1 │ └── wxpaste.1 ├── seticons.1 ├── setstyle.1 ├── sk │ ├── Makefile.am │ ├── geticonset.1 │ ├── getstyle.1 │ ├── seticons.1 │ ├── setstyle.1 │ ├── wdwrite.1 │ ├── wmaker.1 │ ├── wmsetbg.1 │ ├── wxcopy.1 │ └── wxpaste.1 ├── wdread.1 ├── wdwrite.1 ├── wmagnify.1 ├── wmaker.in ├── wmgenmenu.1 ├── wmiv.1 ├── wmmenugen.1 ├── wmsetbg.in ├── wxcopy.1 └── wxpaste.1 ├── email-clients.txt ├── m4 ├── ax_cflags_gcc_option.m4 ├── ax_pthread.m4 ├── ld-version-script.m4 ├── windowmaker.m4 ├── wm_attributes.m4 ├── wm_cflags_check.m4 ├── wm_i18n.m4 ├── wm_imgfmt_check.m4 ├── wm_libexif.m4 ├── wm_libmath.m4 ├── wm_prog_cc_c11.m4 └── wm_xext_check.m4 ├── po ├── Makefile.am ├── README ├── be.po ├── bg.po ├── bs.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── es.po ├── et.po ├── fi.po ├── fr.po ├── fy.po ├── gl.po ├── hr.po ├── hu.po ├── hy.po ├── it.po ├── ja.po ├── ko.po ├── ms.po ├── nl.po ├── no.po ├── pl.po ├── pt.po ├── ro.po ├── ru.po ├── sk.po ├── sv.po ├── tr.po ├── uk.po ├── zh_CN.po └── zh_TW.po ├── script ├── check-cmdline-options-doc.sh ├── check-translation-sources.sh ├── check-wmaker-loaddef-callbacks.sh ├── generate-mapfile-from-header.sh ├── generate-po-from-template.sh ├── generate-txt-from-texi.sh ├── nested-func-to-macro.sh └── replace-ac-keywords.sh ├── src ├── GNUstep.h ├── Makefile.am ├── WindowMaker.h ├── actions.c ├── actions.h ├── appicon.c ├── appicon.h ├── application.c ├── application.h ├── appmenu.c ├── appmenu.h ├── balloon.c ├── balloon.h ├── client.c ├── client.h ├── colormap.c ├── colormap.h ├── cycling.c ├── cycling.h ├── dbus_server.c ├── dbus_server.h ├── def_pixmaps.h ├── defaults.c ├── defaults.h ├── dialog.c ├── dialog.h ├── dock.c ├── dock.h ├── dockedapp.c ├── dockedapp.h ├── event.c ├── event.h ├── extend_pixmaps.h ├── framewin.c ├── framewin.h ├── geomview.c ├── geomview.h ├── icon.c ├── icon.h ├── keybind.h ├── main.c ├── main.h ├── menu.c ├── menu.h ├── misc.c ├── misc.h ├── monitor.c ├── monitor.h ├── motif.c ├── motif.h ├── moveres.c ├── osdep.h ├── osdep_bsd.c ├── osdep_darwin.c ├── osdep_linux.c ├── osdep_stub.c ├── pixmap.c ├── pixmap.h ├── placement.c ├── placement.h ├── properties.c ├── properties.h ├── resources.c ├── resources.h ├── rootmenu.c ├── rootmenu.h ├── screen.c ├── screen.h ├── session.c ├── session.h ├── shutdown.c ├── shutdown.h ├── stacking.c ├── stacking.h ├── startup.c ├── startup.h ├── superfluous.c ├── superfluous.h ├── switchmenu.c ├── switchmenu.h ├── switchpanel.c ├── switchpanel.h ├── texture.c ├── texture.h ├── usermenu.c ├── usermenu.h ├── wconfig.h.in ├── wcore.c ├── wcore.h ├── wdefaults.c ├── wdefaults.h ├── window.c ├── window.h ├── winmenu.c ├── winmenu.h ├── winspector.c ├── winspector.h ├── wmspec.c ├── wmspec.h ├── workspace.c ├── workspace.h ├── wsmap.c ├── wsmap.h ├── xdnd.c ├── xdnd.h ├── xinerama.c ├── xinerama.h ├── xmodifier.c ├── xmodifier.h ├── xutil.c └── xutil.h ├── test ├── Makefile.am ├── dbus-activate.sh ├── dbus-info.sh ├── dbus-ping.sh ├── dbus-windows.sh ├── dbus-workspace.sh ├── notest.c └── wtest.c ├── update-changelog.pl ├── util ├── Makefile.am ├── README ├── bughint ├── common.h ├── convertfonts.c ├── fontconv.c ├── geticonset.c ├── getstyle.c ├── po │ ├── Makefile.am │ ├── README │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── fy.po │ ├── nl.po │ └── pt.po ├── seticons.c ├── setstyle.c ├── wdread.c ├── wdwrite.c ├── wkdemenu.pl ├── wm-oldmenu2new ├── wmagnify.c ├── wmaker.inst.in ├── wmcmd ├── wmgenmenu.c ├── wmgenmenu.h ├── wmiv.c ├── wmiv.h ├── wmmenugen.c ├── wmmenugen.h ├── wmmenugen_misc.c ├── wmmenugen_parse_wmconfig.c ├── wmmenugen_parse_xdg.c ├── wmsetbg.c ├── wmshowstatus.c ├── wxcopy.c └── wxpaste.c ├── wmlib ├── COPYING.LIB ├── Makefile.am ├── WMaker.h ├── app.c ├── app.h ├── command.c ├── event.c ├── menu.c └── menu.h └── wrlib ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── TODO ├── alpha_combine.c ├── color.c ├── context.c ├── convert.c ├── convert.h ├── convolve.c ├── draw.c ├── flip.c ├── gradient.c ├── imgformat.h ├── load.c ├── load_gif.c ├── load_jpeg.c ├── load_magick.c ├── load_png.c ├── load_ppm.c ├── load_tiff.c ├── load_webp.c ├── load_xpm.c ├── load_xpm_normalized.c ├── misc.c ├── raster.c ├── rotate.c ├── rotate.h ├── save.c ├── save_xpm.c ├── scale.c ├── scale.h ├── tests ├── Makefile.am ├── ballot_box.xpm ├── test.png ├── testdraw.c ├── testgrad.c ├── testrot.c ├── tile.xpm └── view.c ├── wraster.h ├── xpixmap.c ├── xutil.c └── xutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGFORM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/BUGFORM -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.WTFPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/COPYING.WTFPL -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/ChangeLog -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/FAQ -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/README -------------------------------------------------------------------------------- /README.definable-cursor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/README.definable-cursor -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/TODO -------------------------------------------------------------------------------- /The-perfect-Window-Maker-patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/The-perfect-Window-Maker-patch.txt -------------------------------------------------------------------------------- /WINGs/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/BUGS -------------------------------------------------------------------------------- /WINGs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/ChangeLog -------------------------------------------------------------------------------- /WINGs/Documentation/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Documentation/Makefile.am -------------------------------------------------------------------------------- /WINGs/Examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Examples/Makefile.am -------------------------------------------------------------------------------- /WINGs/Examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Examples/README -------------------------------------------------------------------------------- /WINGs/Examples/colorpick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Examples/colorpick.c -------------------------------------------------------------------------------- /WINGs/Examples/fontl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Examples/fontl.c -------------------------------------------------------------------------------- /WINGs/Examples/puzzle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Examples/puzzle.c -------------------------------------------------------------------------------- /WINGs/Extras/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Extras/Makefile.am -------------------------------------------------------------------------------- /WINGs/Extras/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Extras/test.c -------------------------------------------------------------------------------- /WINGs/Extras/wtabledelegates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Extras/wtabledelegates.c -------------------------------------------------------------------------------- /WINGs/Extras/wtabledelegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Extras/wtabledelegates.h -------------------------------------------------------------------------------- /WINGs/Extras/wtableview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Extras/wtableview.c -------------------------------------------------------------------------------- /WINGs/Extras/wtableview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Extras/wtableview.h -------------------------------------------------------------------------------- /WINGs/GNUstepLib/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/GNUstepLib/GNUmakefile -------------------------------------------------------------------------------- /WINGs/GNUstepLib/GNUmakefile.postamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/GNUstepLib/GNUmakefile.postamble -------------------------------------------------------------------------------- /WINGs/GNUstepLib/GNUmakefile.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/GNUstepLib/GNUmakefile.preamble -------------------------------------------------------------------------------- /WINGs/GNUstepLib/GNUstepLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/GNUstepLib/GNUstepLib.h -------------------------------------------------------------------------------- /WINGs/GNUstepLib/GNUstepLib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/GNUstepLib/GNUstepLib.m -------------------------------------------------------------------------------- /WINGs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Makefile.am -------------------------------------------------------------------------------- /WINGs/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/NEWS -------------------------------------------------------------------------------- /WINGs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/README -------------------------------------------------------------------------------- /WINGs/Resources/Images.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Resources/Images.tiff -------------------------------------------------------------------------------- /WINGs/Resources/Images.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Resources/Images.xcf -------------------------------------------------------------------------------- /WINGs/Resources/Images.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Resources/Images.xpm -------------------------------------------------------------------------------- /WINGs/Resources/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Resources/Makefile.am -------------------------------------------------------------------------------- /WINGs/Resources/defaultIcon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Resources/defaultIcon.tiff -------------------------------------------------------------------------------- /WINGs/Resources/defaultIcon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Resources/defaultIcon.xpm -------------------------------------------------------------------------------- /WINGs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/TODO -------------------------------------------------------------------------------- /WINGs/Tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/Makefile.am -------------------------------------------------------------------------------- /WINGs/Tests/logo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/logo.xpm -------------------------------------------------------------------------------- /WINGs/Tests/mywidget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/mywidget.c -------------------------------------------------------------------------------- /WINGs/Tests/mywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/mywidget.h -------------------------------------------------------------------------------- /WINGs/Tests/testmywidget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/testmywidget.c -------------------------------------------------------------------------------- /WINGs/Tests/upbtn.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/upbtn.xpm -------------------------------------------------------------------------------- /WINGs/Tests/wm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/wm.html -------------------------------------------------------------------------------- /WINGs/Tests/wm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/wm.png -------------------------------------------------------------------------------- /WINGs/Tests/wmfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/wmfile.c -------------------------------------------------------------------------------- /WINGs/Tests/wmquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/wmquery.c -------------------------------------------------------------------------------- /WINGs/Tests/wtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/Tests/wtest.c -------------------------------------------------------------------------------- /WINGs/WINGs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/WINGs/Makefile.am -------------------------------------------------------------------------------- /WINGs/WINGs/WINGs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/WINGs/WINGs.h -------------------------------------------------------------------------------- /WINGs/WINGs/WINGsP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/WINGs/WINGsP.h -------------------------------------------------------------------------------- /WINGs/WINGs/WUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/WINGs/WUtil.h -------------------------------------------------------------------------------- /WINGs/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/array.c -------------------------------------------------------------------------------- /WINGs/bagtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/bagtree.c -------------------------------------------------------------------------------- /WINGs/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/configuration.c -------------------------------------------------------------------------------- /WINGs/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/data.c -------------------------------------------------------------------------------- /WINGs/dragcommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/dragcommon.c -------------------------------------------------------------------------------- /WINGs/dragdestination.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/dragdestination.c -------------------------------------------------------------------------------- /WINGs/dragsource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/dragsource.c -------------------------------------------------------------------------------- /WINGs/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/error.c -------------------------------------------------------------------------------- /WINGs/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/error.h -------------------------------------------------------------------------------- /WINGs/findfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/findfile.c -------------------------------------------------------------------------------- /WINGs/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/handlers.c -------------------------------------------------------------------------------- /WINGs/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/hashtable.c -------------------------------------------------------------------------------- /WINGs/make-rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/make-rgb -------------------------------------------------------------------------------- /WINGs/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/memory.c -------------------------------------------------------------------------------- /WINGs/menuparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/menuparser.c -------------------------------------------------------------------------------- /WINGs/menuparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/menuparser.h -------------------------------------------------------------------------------- /WINGs/menuparser_macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/menuparser_macros.c -------------------------------------------------------------------------------- /WINGs/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/misc.c -------------------------------------------------------------------------------- /WINGs/notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/notification.c -------------------------------------------------------------------------------- /WINGs/po/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/Makefile.am -------------------------------------------------------------------------------- /WINGs/po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/README -------------------------------------------------------------------------------- /WINGs/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/bg.po -------------------------------------------------------------------------------- /WINGs/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/ca.po -------------------------------------------------------------------------------- /WINGs/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/cs.po -------------------------------------------------------------------------------- /WINGs/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/de.po -------------------------------------------------------------------------------- /WINGs/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/fr.po -------------------------------------------------------------------------------- /WINGs/po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/fy.po -------------------------------------------------------------------------------- /WINGs/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/hu.po -------------------------------------------------------------------------------- /WINGs/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/nl.po -------------------------------------------------------------------------------- /WINGs/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/po/sk.po -------------------------------------------------------------------------------- /WINGs/proplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/proplist.c -------------------------------------------------------------------------------- /WINGs/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/rgb.h -------------------------------------------------------------------------------- /WINGs/selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/selection.c -------------------------------------------------------------------------------- /WINGs/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/string.c -------------------------------------------------------------------------------- /WINGs/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/tree.c -------------------------------------------------------------------------------- /WINGs/userdefaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/userdefaults.c -------------------------------------------------------------------------------- /WINGs/userdefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/userdefaults.h -------------------------------------------------------------------------------- /WINGs/usleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/usleep.c -------------------------------------------------------------------------------- /WINGs/wapplication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wapplication.c -------------------------------------------------------------------------------- /WINGs/wappresource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wappresource.c -------------------------------------------------------------------------------- /WINGs/wballoon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wballoon.c -------------------------------------------------------------------------------- /WINGs/wbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wbox.c -------------------------------------------------------------------------------- /WINGs/wbrowser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wbrowser.c -------------------------------------------------------------------------------- /WINGs/wbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wbutton.c -------------------------------------------------------------------------------- /WINGs/wcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wcolor.c -------------------------------------------------------------------------------- /WINGs/wcolorpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wcolorpanel.c -------------------------------------------------------------------------------- /WINGs/wcolorwell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wcolorwell.c -------------------------------------------------------------------------------- /WINGs/wconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wconfig.h -------------------------------------------------------------------------------- /WINGs/wevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wevent.c -------------------------------------------------------------------------------- /WINGs/wfilepanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wfilepanel.c -------------------------------------------------------------------------------- /WINGs/wfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wfont.c -------------------------------------------------------------------------------- /WINGs/wfontpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wfontpanel.c -------------------------------------------------------------------------------- /WINGs/wframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wframe.c -------------------------------------------------------------------------------- /WINGs/widgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/widgets.c -------------------------------------------------------------------------------- /WINGs/winputmethod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/winputmethod.c -------------------------------------------------------------------------------- /WINGs/wlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wlabel.c -------------------------------------------------------------------------------- /WINGs/wlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wlist.c -------------------------------------------------------------------------------- /WINGs/wmenuitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wmenuitem.c -------------------------------------------------------------------------------- /WINGs/wmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wmisc.c -------------------------------------------------------------------------------- /WINGs/wpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wpanel.c -------------------------------------------------------------------------------- /WINGs/wpixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wpixmap.c -------------------------------------------------------------------------------- /WINGs/wpopupbutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wpopupbutton.c -------------------------------------------------------------------------------- /WINGs/wprogressindicator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wprogressindicator.c -------------------------------------------------------------------------------- /WINGs/wruler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wruler.c -------------------------------------------------------------------------------- /WINGs/wscroller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wscroller.c -------------------------------------------------------------------------------- /WINGs/wscrollview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wscrollview.c -------------------------------------------------------------------------------- /WINGs/wslider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wslider.c -------------------------------------------------------------------------------- /WINGs/wsplitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wsplitview.c -------------------------------------------------------------------------------- /WINGs/wtabview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wtabview.c -------------------------------------------------------------------------------- /WINGs/wtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wtext.c -------------------------------------------------------------------------------- /WINGs/wtextfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wtextfield.c -------------------------------------------------------------------------------- /WINGs/wutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wutil.c -------------------------------------------------------------------------------- /WINGs/wview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wview.c -------------------------------------------------------------------------------- /WINGs/wwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WINGs/wwindow.c -------------------------------------------------------------------------------- /WPrefs.app/Appearance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Appearance.c -------------------------------------------------------------------------------- /WPrefs.app/Configurations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Configurations.c -------------------------------------------------------------------------------- /WPrefs.app/Docks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Docks.c -------------------------------------------------------------------------------- /WPrefs.app/Expert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Expert.c -------------------------------------------------------------------------------- /WPrefs.app/Focus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Focus.c -------------------------------------------------------------------------------- /WPrefs.app/FontSimple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/FontSimple.c -------------------------------------------------------------------------------- /WPrefs.app/Icons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Icons.c -------------------------------------------------------------------------------- /WPrefs.app/KeyboardSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/KeyboardSettings.c -------------------------------------------------------------------------------- /WPrefs.app/KeyboardShortcuts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/KeyboardShortcuts.c -------------------------------------------------------------------------------- /WPrefs.app/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Makefile.am -------------------------------------------------------------------------------- /WPrefs.app/Menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Menu.c -------------------------------------------------------------------------------- /WPrefs.app/MenuPreferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/MenuPreferences.c -------------------------------------------------------------------------------- /WPrefs.app/MouseSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/MouseSettings.c -------------------------------------------------------------------------------- /WPrefs.app/Paths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Paths.c -------------------------------------------------------------------------------- /WPrefs.app/Preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Preferences.c -------------------------------------------------------------------------------- /WPrefs.app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/README -------------------------------------------------------------------------------- /WPrefs.app/TexturePanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/TexturePanel.c -------------------------------------------------------------------------------- /WPrefs.app/TexturePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/TexturePanel.h -------------------------------------------------------------------------------- /WPrefs.app/Themes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Themes.c -------------------------------------------------------------------------------- /WPrefs.app/WPrefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/WPrefs.c -------------------------------------------------------------------------------- /WPrefs.app/WPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/WPrefs.h -------------------------------------------------------------------------------- /WPrefs.app/WPrefs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/WPrefs.tiff -------------------------------------------------------------------------------- /WPrefs.app/WPrefs.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/WPrefs.xpm -------------------------------------------------------------------------------- /WPrefs.app/WindowHandling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/WindowHandling.c -------------------------------------------------------------------------------- /WPrefs.app/Workspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/Workspace.c -------------------------------------------------------------------------------- /WPrefs.app/double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/double.c -------------------------------------------------------------------------------- /WPrefs.app/editmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/editmenu.c -------------------------------------------------------------------------------- /WPrefs.app/editmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/editmenu.h -------------------------------------------------------------------------------- /WPrefs.app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/main.c -------------------------------------------------------------------------------- /WPrefs.app/po/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/Makefile.am -------------------------------------------------------------------------------- /WPrefs.app/po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/README -------------------------------------------------------------------------------- /WPrefs.app/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/bg.po -------------------------------------------------------------------------------- /WPrefs.app/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/ca.po -------------------------------------------------------------------------------- /WPrefs.app/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/cs.po -------------------------------------------------------------------------------- /WPrefs.app/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/de.po -------------------------------------------------------------------------------- /WPrefs.app/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/es.po -------------------------------------------------------------------------------- /WPrefs.app/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/et.po -------------------------------------------------------------------------------- /WPrefs.app/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/fi.po -------------------------------------------------------------------------------- /WPrefs.app/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/fr.po -------------------------------------------------------------------------------- /WPrefs.app/po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/fy.po -------------------------------------------------------------------------------- /WPrefs.app/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/hr.po -------------------------------------------------------------------------------- /WPrefs.app/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/hu.po -------------------------------------------------------------------------------- /WPrefs.app/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/it.po -------------------------------------------------------------------------------- /WPrefs.app/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/ja.po -------------------------------------------------------------------------------- /WPrefs.app/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/ko.po -------------------------------------------------------------------------------- /WPrefs.app/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/nl.po -------------------------------------------------------------------------------- /WPrefs.app/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/pt.po -------------------------------------------------------------------------------- /WPrefs.app/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/ru.po -------------------------------------------------------------------------------- /WPrefs.app/po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/sk.po -------------------------------------------------------------------------------- /WPrefs.app/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/tr.po -------------------------------------------------------------------------------- /WPrefs.app/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/uk.po -------------------------------------------------------------------------------- /WPrefs.app/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/zh_CN.po -------------------------------------------------------------------------------- /WPrefs.app/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/po/zh_TW.po -------------------------------------------------------------------------------- /WPrefs.app/tiff/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/Makefile.am -------------------------------------------------------------------------------- /WPrefs.app/tiff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/README -------------------------------------------------------------------------------- /WPrefs.app/tiff/advancetonewworkspace.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/advancetonewworkspace.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/animations.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/animations.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/appearance.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/appearance.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/clip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/clip.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/configs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/configs.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/cycleworkspaces.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/cycleworkspaces.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/dock.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/dock.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/dockclipdrawersection.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/dockclipdrawersection.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/dontlinkworkspaces.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/dontlinkworkspaces.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/drawer.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/drawer.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/ergonomic.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/ergonomic.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/expert.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/expert.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/fonts.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/fonts.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/iconprefs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/iconprefs.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/keyboard.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/keyboard.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/keyboardprefs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/keyboardprefs.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/keyshortcuts.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/keyshortcuts.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/menualign1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/menualign1.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/menualign2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/menualign2.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/menuprefs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/menuprefs.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/menus.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/menus.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/miscprefs2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/miscprefs2.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/moreanim.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/moreanim.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/mousesettings.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/mousesettings.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/mousespeed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/mousespeed.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/msty1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/msty1.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/msty2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/msty2.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/msty3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/msty3.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/newstyle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/newstyle.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/nextstyle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/nextstyle.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/nonopaque.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/nonopaque.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/noopaqueresize.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/noopaqueresize.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/oldstyle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/oldstyle.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/opaque.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/opaque.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/opaqueresize.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/opaqueresize.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/paths.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/paths.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/smallwindow.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/smallwindow.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/smooth.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/smooth.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/sound.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/sound.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed0.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed0.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed0s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed0s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed1.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed1s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed1s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed2.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed2s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed2s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed3.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed3s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed3s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed4.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/speed4s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/speed4s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/tdel.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/tdel.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/tedit.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/tedit.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/temp.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/temp.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/textr.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/textr.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/theme.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/theme.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer0.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer0.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer0s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer0s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer1.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer1s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer1s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer2.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer2s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer2s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer3.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer3s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer3s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer4.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer4s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer4s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer5.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/timer5s.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/timer5s.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/tnew.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/tnew.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/whandling.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/whandling.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/windowfocus.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/windowfocus.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/workspace.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/workspace.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/workspacename.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/workspacename.tiff -------------------------------------------------------------------------------- /WPrefs.app/tiff/xis.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/tiff/xis.tiff -------------------------------------------------------------------------------- /WPrefs.app/xmodifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xmodifier.c -------------------------------------------------------------------------------- /WPrefs.app/xpm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/Makefile.am -------------------------------------------------------------------------------- /WPrefs.app/xpm/advancetonewworkspace.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/advancetonewworkspace.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/animations.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/animations.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/appearance.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/appearance.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/clip.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/clip.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/configs.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/configs.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/cycleworkspaces.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/cycleworkspaces.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/dock.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/dock.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/dockclipdrawersection.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/dockclipdrawersection.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/dontlinkworkspaces.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/dontlinkworkspaces.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/drawer.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/drawer.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/ergonomic.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/ergonomic.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/expert.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/expert.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/fonts.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/fonts.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/iconprefs.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/iconprefs.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/keyboard.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/keyboard.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/keyboardprefs.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/keyboardprefs.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/keyshortcuts.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/keyshortcuts.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/menualign1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/menualign1.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/menualign2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/menualign2.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/menuprefs.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/menuprefs.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/menus.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/menus.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/moreanim.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/moreanim.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/mousesettings.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/mousesettings.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/mousespeed.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/mousespeed.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/msty1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/msty1.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/msty2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/msty2.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/msty3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/msty3.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/newstyle.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/newstyle.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/nextstyle.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/nextstyle.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/nonopaque.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/nonopaque.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/noopaqueresize.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/noopaqueresize.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/oldstyle.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/oldstyle.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/opaque.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/opaque.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/opaqueresize.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/opaqueresize.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/paths.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/paths.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/smallwindow.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/smallwindow.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/smooth.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/smooth.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/sound.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/sound.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed0.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed0.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed0s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed0s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed1.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed1s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed1s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed2.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed2s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed2s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed3.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed3s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed3s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed4.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/speed4s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/speed4s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/tdel.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/tdel.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/tedit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/tedit.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/temp.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/temp.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/textr.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/textr.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/theme.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/theme.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer0.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer0.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer0s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer0s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer1.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer1s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer1s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer2.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer2s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer2s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer3.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer3s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer3s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer4.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer4.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer4s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer4s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer5.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer5.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/timer5s.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/timer5s.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/tnew.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/tnew.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/whandling.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/whandling.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/windowfocus.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/windowfocus.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/workspace.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/workspace.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/workspacename.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/workspacename.xpm -------------------------------------------------------------------------------- /WPrefs.app/xpm/xis.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WPrefs.app/xpm/xis.xpm -------------------------------------------------------------------------------- /WindowMaker/Backgrounds/BlueImage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Backgrounds/BlueImage.jpeg -------------------------------------------------------------------------------- /WindowMaker/Backgrounds/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Backgrounds/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Defaults/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Defaults/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Defaults/WMGLOBAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Defaults/WMGLOBAL -------------------------------------------------------------------------------- /WindowMaker/Defaults/WMState.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Defaults/WMState.in -------------------------------------------------------------------------------- /WindowMaker/Defaults/WMWindowAttributes.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Defaults/WMWindowAttributes.in -------------------------------------------------------------------------------- /WindowMaker/Defaults/WindowMaker.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Defaults/WindowMaker.in -------------------------------------------------------------------------------- /WindowMaker/IconSets/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/IconSets/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Icons/BitchX.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/BitchX.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/BitchX.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/BitchX.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/Drawer.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Drawer.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/Drawer.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Drawer.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/Ear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Ear.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Ftp.png -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUstep.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUstep.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUstep.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUstep.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUstep3D.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUstep3D.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUstep3D.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUstep3D.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUstepGlow.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUstepGlow.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUstepGlow.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUstepGlow.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUterm.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUterm.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/GNUterm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GNUterm.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/GreenWilber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/GreenWilber.png -------------------------------------------------------------------------------- /WindowMaker/Icons/ICQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/ICQ.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Jabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Jabber.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Magnify.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Magnify.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/Magnify.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Magnify.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Icons/Mouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Mouth.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Mozilla.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Pen.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Pencil.png -------------------------------------------------------------------------------- /WindowMaker/Icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/README -------------------------------------------------------------------------------- /WindowMaker/Icons/Real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Real.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Shell.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Speaker.png -------------------------------------------------------------------------------- /WindowMaker/Icons/Terminal.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Terminal.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/Terminal.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Terminal.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/TerminalGNUstep.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/TerminalGNUstep.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/TerminalGNUstep.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/TerminalGNUstep.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/TerminalLinux.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/TerminalLinux.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/TerminalLinux.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/TerminalLinux.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/Wine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/Wine.png -------------------------------------------------------------------------------- /WindowMaker/Icons/XChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/XChat.png -------------------------------------------------------------------------------- /WindowMaker/Icons/clip.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/clip.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/clip.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/clip.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/defaultAppIcon.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/defaultAppIcon.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/defaultAppIcon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/defaultAppIcon.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/defaultterm.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/defaultterm.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/defaultterm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/defaultterm.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/draw.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/draw.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/draw.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/draw.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/linuxterm.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/linuxterm.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/linuxterm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/linuxterm.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/mixer.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/mixer.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/mixer.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/mixer.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/notepad.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/notepad.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/notepad.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/notepad.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/pdf.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/pdf.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/pdf.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/pdf.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/ps.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/ps.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/ps.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/ps.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/real.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/real.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/real.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/real.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/sgiterm.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/sgiterm.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/sgiterm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/sgiterm.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/staroffice2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/staroffice2.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/staroffice2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/staroffice2.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/timer.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/timer.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/timer.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/timer.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/wilber.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/wilber.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/wilber.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/wilber.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/write.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/write.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/write.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/write.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/xdvi.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/xdvi.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/xdvi.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/xdvi.xpm -------------------------------------------------------------------------------- /WindowMaker/Icons/xv.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/xv.tiff -------------------------------------------------------------------------------- /WindowMaker/Icons/xv.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Icons/xv.xpm -------------------------------------------------------------------------------- /WindowMaker/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Pixmaps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Pixmaps/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Pixmaps/swback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Pixmaps/swback.png -------------------------------------------------------------------------------- /WindowMaker/Pixmaps/swback2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Pixmaps/swback2.png -------------------------------------------------------------------------------- /WindowMaker/Pixmaps/swtile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Pixmaps/swtile.png -------------------------------------------------------------------------------- /WindowMaker/Pixmaps/tile.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Pixmaps/tile.tiff -------------------------------------------------------------------------------- /WindowMaker/Pixmaps/tile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Pixmaps/tile.xpm -------------------------------------------------------------------------------- /WindowMaker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/README -------------------------------------------------------------------------------- /WindowMaker/README.themes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/README.themes -------------------------------------------------------------------------------- /WindowMaker/Styles/Adwaita.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Adwaita.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Autumn.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Autumn.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Black.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Black.style -------------------------------------------------------------------------------- /WindowMaker/Styles/BlackTexture.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/BlackTexture.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Blue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Blue.style -------------------------------------------------------------------------------- /WindowMaker/Styles/BlueDawn.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/BlueDawn.style -------------------------------------------------------------------------------- /WindowMaker/Styles/BlueishGreen.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/BlueishGreen.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Brown.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Brown.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Brownish.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Brownish.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Chumbo.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Chumbo.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Copper.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Copper.style -------------------------------------------------------------------------------- /WindowMaker/Styles/DarkBlue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/DarkBlue.style -------------------------------------------------------------------------------- /WindowMaker/Styles/DarkRed.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/DarkRed.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Emerald.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Emerald.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Fire.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Fire.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Food.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Food.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Golden.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Golden.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Green.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Green.style -------------------------------------------------------------------------------- /WindowMaker/Styles/GreyBlue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/GreyBlue.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Gtk.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Gtk.style -------------------------------------------------------------------------------- /WindowMaker/Styles/IRednBlue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/IRednBlue.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Interlace.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Interlace.style -------------------------------------------------------------------------------- /WindowMaker/Styles/LightBlue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/LightBlue.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Styles/NewBlue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/NewBlue.style -------------------------------------------------------------------------------- /WindowMaker/Styles/NightSky.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/NightSky.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Pastel.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Pastel.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Pink.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Pink.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Pumpkin.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Pumpkin.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Purple.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Purple.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Purplish.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Purplish.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Red.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Red.style -------------------------------------------------------------------------------- /WindowMaker/Styles/RednBlue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/RednBlue.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Spring.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Spring.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Summer.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Summer.style -------------------------------------------------------------------------------- /WindowMaker/Styles/Traditional.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/Traditional.style -------------------------------------------------------------------------------- /WindowMaker/Styles/VioletBlue.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Styles/VioletBlue.style -------------------------------------------------------------------------------- /WindowMaker/Themes/Blau.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Themes/Blau.style -------------------------------------------------------------------------------- /WindowMaker/Themes/Default.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Themes/Default.style -------------------------------------------------------------------------------- /WindowMaker/Themes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Themes/Makefile.am -------------------------------------------------------------------------------- /WindowMaker/Themes/OpenStep.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Themes/OpenStep.style -------------------------------------------------------------------------------- /WindowMaker/Themes/Pastel.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Themes/Pastel.style -------------------------------------------------------------------------------- /WindowMaker/Themes/SteelBlueSilk.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/Themes/SteelBlueSilk.style -------------------------------------------------------------------------------- /WindowMaker/appearance.menu.fy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/appearance.menu.fy.in -------------------------------------------------------------------------------- /WindowMaker/appearance.menu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/appearance.menu.in -------------------------------------------------------------------------------- /WindowMaker/appearance.menu.nl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/appearance.menu.nl.in -------------------------------------------------------------------------------- /WindowMaker/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/autostart.sh -------------------------------------------------------------------------------- /WindowMaker/background.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/background.menu -------------------------------------------------------------------------------- /WindowMaker/background.menu.fy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/background.menu.fy -------------------------------------------------------------------------------- /WindowMaker/background.menu.nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/background.menu.nl -------------------------------------------------------------------------------- /WindowMaker/exitscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/exitscript.sh -------------------------------------------------------------------------------- /WindowMaker/menu.bg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.bg.in -------------------------------------------------------------------------------- /WindowMaker/menu.ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.ca -------------------------------------------------------------------------------- /WindowMaker/menu.cz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.cz -------------------------------------------------------------------------------- /WindowMaker/menu.da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.da -------------------------------------------------------------------------------- /WindowMaker/menu.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.de -------------------------------------------------------------------------------- /WindowMaker/menu.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.el -------------------------------------------------------------------------------- /WindowMaker/menu.es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.es -------------------------------------------------------------------------------- /WindowMaker/menu.fi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.fi.in -------------------------------------------------------------------------------- /WindowMaker/menu.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.fr -------------------------------------------------------------------------------- /WindowMaker/menu.fy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.fy.in -------------------------------------------------------------------------------- /WindowMaker/menu.gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.gl -------------------------------------------------------------------------------- /WindowMaker/menu.he: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.he -------------------------------------------------------------------------------- /WindowMaker/menu.hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.hr -------------------------------------------------------------------------------- /WindowMaker/menu.hu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.hu.in -------------------------------------------------------------------------------- /WindowMaker/menu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.in -------------------------------------------------------------------------------- /WindowMaker/menu.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.it -------------------------------------------------------------------------------- /WindowMaker/menu.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.ja -------------------------------------------------------------------------------- /WindowMaker/menu.ko.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.ko.in -------------------------------------------------------------------------------- /WindowMaker/menu.nl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.nl.in -------------------------------------------------------------------------------- /WindowMaker/menu.no: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.no -------------------------------------------------------------------------------- /WindowMaker/menu.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.pl -------------------------------------------------------------------------------- /WindowMaker/menu.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.pt -------------------------------------------------------------------------------- /WindowMaker/menu.ro.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.ro.in -------------------------------------------------------------------------------- /WindowMaker/menu.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.ru -------------------------------------------------------------------------------- /WindowMaker/menu.se: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.se -------------------------------------------------------------------------------- /WindowMaker/menu.sk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.sk.in -------------------------------------------------------------------------------- /WindowMaker/menu.sl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.sl -------------------------------------------------------------------------------- /WindowMaker/menu.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.tr -------------------------------------------------------------------------------- /WindowMaker/menu.zh_CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.zh_CN -------------------------------------------------------------------------------- /WindowMaker/menu.zh_TW.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/menu.zh_TW.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.bg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.bg.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.da -------------------------------------------------------------------------------- /WindowMaker/plmenu.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.de -------------------------------------------------------------------------------- /WindowMaker/plmenu.es.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.es.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.fi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.fi.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.fr -------------------------------------------------------------------------------- /WindowMaker/plmenu.fy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.fy.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.hr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.hr -------------------------------------------------------------------------------- /WindowMaker/plmenu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.it -------------------------------------------------------------------------------- /WindowMaker/plmenu.ja.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.ja.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.ko.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.ko.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.nl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.nl.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.pl.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.ro.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.ro.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.sk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.sk.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.zh_CN.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.zh_CN.in -------------------------------------------------------------------------------- /WindowMaker/plmenu.zh_TW.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/plmenu.zh_TW.in -------------------------------------------------------------------------------- /WindowMaker/wmmacros.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/WindowMaker/wmmacros.in -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/autogen.sh -------------------------------------------------------------------------------- /checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/checkpatch.pl -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/configure.ac -------------------------------------------------------------------------------- /distros/WindowMaker-WMRootMenu-fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/distros/WindowMaker-WMRootMenu-fedora -------------------------------------------------------------------------------- /distros/WindowMaker-application.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/distros/WindowMaker-application.desktop -------------------------------------------------------------------------------- /distros/WindowMaker-xsession.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/distros/WindowMaker-xsession.desktop -------------------------------------------------------------------------------- /distros/wmaker-crm-next.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/distros/wmaker-crm-next.spec -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/WPrefs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/WPrefs.1 -------------------------------------------------------------------------------- /doc/WindowMaker.1: -------------------------------------------------------------------------------- 1 | .so man1/wmaker.1 2 | -------------------------------------------------------------------------------- /doc/build/Compilation.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/build/Compilation.texi -------------------------------------------------------------------------------- /doc/build/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/build/Makefile.am -------------------------------------------------------------------------------- /doc/build/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/build/Readme -------------------------------------------------------------------------------- /doc/build/Translations.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/build/Translations.texi -------------------------------------------------------------------------------- /doc/cs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/Makefile.am -------------------------------------------------------------------------------- /doc/cs/geticonset.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/geticonset.1 -------------------------------------------------------------------------------- /doc/cs/getstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/getstyle.1 -------------------------------------------------------------------------------- /doc/cs/seticons.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/seticons.1 -------------------------------------------------------------------------------- /doc/cs/setstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/setstyle.1 -------------------------------------------------------------------------------- /doc/cs/wdwrite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/wdwrite.1 -------------------------------------------------------------------------------- /doc/cs/wmaker.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/wmaker.1 -------------------------------------------------------------------------------- /doc/cs/wmsetbg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/wmsetbg.1 -------------------------------------------------------------------------------- /doc/cs/wxcopy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/wxcopy.1 -------------------------------------------------------------------------------- /doc/cs/wxpaste.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/cs/wxpaste.1 -------------------------------------------------------------------------------- /doc/geticonset.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/geticonset.1 -------------------------------------------------------------------------------- /doc/getstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/getstyle.1 -------------------------------------------------------------------------------- /doc/ru/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/Makefile.am -------------------------------------------------------------------------------- /doc/ru/geticonset.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/geticonset.1 -------------------------------------------------------------------------------- /doc/ru/getstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/getstyle.1 -------------------------------------------------------------------------------- /doc/ru/seticons.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/seticons.1 -------------------------------------------------------------------------------- /doc/ru/setstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/setstyle.1 -------------------------------------------------------------------------------- /doc/ru/wdwrite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/wdwrite.1 -------------------------------------------------------------------------------- /doc/ru/wmaker.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/wmaker.1 -------------------------------------------------------------------------------- /doc/ru/wmsetbg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/wmsetbg.1 -------------------------------------------------------------------------------- /doc/ru/wxcopy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/wxcopy.1 -------------------------------------------------------------------------------- /doc/ru/wxpaste.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/ru/wxpaste.1 -------------------------------------------------------------------------------- /doc/seticons.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/seticons.1 -------------------------------------------------------------------------------- /doc/setstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/setstyle.1 -------------------------------------------------------------------------------- /doc/sk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/Makefile.am -------------------------------------------------------------------------------- /doc/sk/geticonset.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/geticonset.1 -------------------------------------------------------------------------------- /doc/sk/getstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/getstyle.1 -------------------------------------------------------------------------------- /doc/sk/seticons.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/seticons.1 -------------------------------------------------------------------------------- /doc/sk/setstyle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/setstyle.1 -------------------------------------------------------------------------------- /doc/sk/wdwrite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/wdwrite.1 -------------------------------------------------------------------------------- /doc/sk/wmaker.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/wmaker.1 -------------------------------------------------------------------------------- /doc/sk/wmsetbg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/wmsetbg.1 -------------------------------------------------------------------------------- /doc/sk/wxcopy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/wxcopy.1 -------------------------------------------------------------------------------- /doc/sk/wxpaste.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/sk/wxpaste.1 -------------------------------------------------------------------------------- /doc/wdread.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wdread.1 -------------------------------------------------------------------------------- /doc/wdwrite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wdwrite.1 -------------------------------------------------------------------------------- /doc/wmagnify.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wmagnify.1 -------------------------------------------------------------------------------- /doc/wmaker.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wmaker.in -------------------------------------------------------------------------------- /doc/wmgenmenu.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wmgenmenu.1 -------------------------------------------------------------------------------- /doc/wmiv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wmiv.1 -------------------------------------------------------------------------------- /doc/wmmenugen.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wmmenugen.1 -------------------------------------------------------------------------------- /doc/wmsetbg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wmsetbg.in -------------------------------------------------------------------------------- /doc/wxcopy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wxcopy.1 -------------------------------------------------------------------------------- /doc/wxpaste.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/doc/wxpaste.1 -------------------------------------------------------------------------------- /email-clients.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/email-clients.txt -------------------------------------------------------------------------------- /m4/ax_cflags_gcc_option.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/ax_cflags_gcc_option.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/ld-version-script.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/ld-version-script.m4 -------------------------------------------------------------------------------- /m4/windowmaker.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/windowmaker.m4 -------------------------------------------------------------------------------- /m4/wm_attributes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_attributes.m4 -------------------------------------------------------------------------------- /m4/wm_cflags_check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_cflags_check.m4 -------------------------------------------------------------------------------- /m4/wm_i18n.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_i18n.m4 -------------------------------------------------------------------------------- /m4/wm_imgfmt_check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_imgfmt_check.m4 -------------------------------------------------------------------------------- /m4/wm_libexif.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_libexif.m4 -------------------------------------------------------------------------------- /m4/wm_libmath.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_libmath.m4 -------------------------------------------------------------------------------- /m4/wm_prog_cc_c11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_prog_cc_c11.m4 -------------------------------------------------------------------------------- /m4/wm_xext_check.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/m4/wm_xext_check.m4 -------------------------------------------------------------------------------- /po/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/Makefile.am -------------------------------------------------------------------------------- /po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/README -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/et.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/fy.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/no.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /script/check-cmdline-options-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/check-cmdline-options-doc.sh -------------------------------------------------------------------------------- /script/check-translation-sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/check-translation-sources.sh -------------------------------------------------------------------------------- /script/check-wmaker-loaddef-callbacks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/check-wmaker-loaddef-callbacks.sh -------------------------------------------------------------------------------- /script/generate-mapfile-from-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/generate-mapfile-from-header.sh -------------------------------------------------------------------------------- /script/generate-po-from-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/generate-po-from-template.sh -------------------------------------------------------------------------------- /script/generate-txt-from-texi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/generate-txt-from-texi.sh -------------------------------------------------------------------------------- /script/nested-func-to-macro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/nested-func-to-macro.sh -------------------------------------------------------------------------------- /script/replace-ac-keywords.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/script/replace-ac-keywords.sh -------------------------------------------------------------------------------- /src/GNUstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/GNUstep.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/WindowMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/WindowMaker.h -------------------------------------------------------------------------------- /src/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/actions.c -------------------------------------------------------------------------------- /src/actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/actions.h -------------------------------------------------------------------------------- /src/appicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/appicon.c -------------------------------------------------------------------------------- /src/appicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/appicon.h -------------------------------------------------------------------------------- /src/application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/application.c -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/application.h -------------------------------------------------------------------------------- /src/appmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/appmenu.c -------------------------------------------------------------------------------- /src/appmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/appmenu.h -------------------------------------------------------------------------------- /src/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/balloon.c -------------------------------------------------------------------------------- /src/balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/balloon.h -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/client.c -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/client.h -------------------------------------------------------------------------------- /src/colormap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/colormap.c -------------------------------------------------------------------------------- /src/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/colormap.h -------------------------------------------------------------------------------- /src/cycling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/cycling.c -------------------------------------------------------------------------------- /src/cycling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/cycling.h -------------------------------------------------------------------------------- /src/dbus_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dbus_server.c -------------------------------------------------------------------------------- /src/dbus_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dbus_server.h -------------------------------------------------------------------------------- /src/def_pixmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/def_pixmaps.h -------------------------------------------------------------------------------- /src/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/defaults.c -------------------------------------------------------------------------------- /src/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/defaults.h -------------------------------------------------------------------------------- /src/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dialog.c -------------------------------------------------------------------------------- /src/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dialog.h -------------------------------------------------------------------------------- /src/dock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dock.c -------------------------------------------------------------------------------- /src/dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dock.h -------------------------------------------------------------------------------- /src/dockedapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dockedapp.c -------------------------------------------------------------------------------- /src/dockedapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/dockedapp.h -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/event.c -------------------------------------------------------------------------------- /src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/event.h -------------------------------------------------------------------------------- /src/extend_pixmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/extend_pixmaps.h -------------------------------------------------------------------------------- /src/framewin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/framewin.c -------------------------------------------------------------------------------- /src/framewin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/framewin.h -------------------------------------------------------------------------------- /src/geomview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/geomview.c -------------------------------------------------------------------------------- /src/geomview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/geomview.h -------------------------------------------------------------------------------- /src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/icon.c -------------------------------------------------------------------------------- /src/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/icon.h -------------------------------------------------------------------------------- /src/keybind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/keybind.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/main.h -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/menu.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/monitor.c -------------------------------------------------------------------------------- /src/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/monitor.h -------------------------------------------------------------------------------- /src/motif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/motif.c -------------------------------------------------------------------------------- /src/motif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/motif.h -------------------------------------------------------------------------------- /src/moveres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/moveres.c -------------------------------------------------------------------------------- /src/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/osdep.h -------------------------------------------------------------------------------- /src/osdep_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/osdep_bsd.c -------------------------------------------------------------------------------- /src/osdep_darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/osdep_darwin.c -------------------------------------------------------------------------------- /src/osdep_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/osdep_linux.c -------------------------------------------------------------------------------- /src/osdep_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/osdep_stub.c -------------------------------------------------------------------------------- /src/pixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/pixmap.c -------------------------------------------------------------------------------- /src/pixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/pixmap.h -------------------------------------------------------------------------------- /src/placement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/placement.c -------------------------------------------------------------------------------- /src/placement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/placement.h -------------------------------------------------------------------------------- /src/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/properties.c -------------------------------------------------------------------------------- /src/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/properties.h -------------------------------------------------------------------------------- /src/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/resources.c -------------------------------------------------------------------------------- /src/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/resources.h -------------------------------------------------------------------------------- /src/rootmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/rootmenu.c -------------------------------------------------------------------------------- /src/rootmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/rootmenu.h -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/session.c -------------------------------------------------------------------------------- /src/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/session.h -------------------------------------------------------------------------------- /src/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/shutdown.c -------------------------------------------------------------------------------- /src/shutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/shutdown.h -------------------------------------------------------------------------------- /src/stacking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/stacking.c -------------------------------------------------------------------------------- /src/stacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/stacking.h -------------------------------------------------------------------------------- /src/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/startup.c -------------------------------------------------------------------------------- /src/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/startup.h -------------------------------------------------------------------------------- /src/superfluous.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/superfluous.c -------------------------------------------------------------------------------- /src/superfluous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/superfluous.h -------------------------------------------------------------------------------- /src/switchmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/switchmenu.c -------------------------------------------------------------------------------- /src/switchmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/switchmenu.h -------------------------------------------------------------------------------- /src/switchpanel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/switchpanel.c -------------------------------------------------------------------------------- /src/switchpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/switchpanel.h -------------------------------------------------------------------------------- /src/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/texture.c -------------------------------------------------------------------------------- /src/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/texture.h -------------------------------------------------------------------------------- /src/usermenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/usermenu.c -------------------------------------------------------------------------------- /src/usermenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/usermenu.h -------------------------------------------------------------------------------- /src/wconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wconfig.h.in -------------------------------------------------------------------------------- /src/wcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wcore.c -------------------------------------------------------------------------------- /src/wcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wcore.h -------------------------------------------------------------------------------- /src/wdefaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wdefaults.c -------------------------------------------------------------------------------- /src/wdefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wdefaults.h -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/window.c -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/window.h -------------------------------------------------------------------------------- /src/winmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/winmenu.c -------------------------------------------------------------------------------- /src/winmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/winmenu.h -------------------------------------------------------------------------------- /src/winspector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/winspector.c -------------------------------------------------------------------------------- /src/winspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/winspector.h -------------------------------------------------------------------------------- /src/wmspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wmspec.c -------------------------------------------------------------------------------- /src/wmspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wmspec.h -------------------------------------------------------------------------------- /src/workspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/workspace.c -------------------------------------------------------------------------------- /src/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/workspace.h -------------------------------------------------------------------------------- /src/wsmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wsmap.c -------------------------------------------------------------------------------- /src/wsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/wsmap.h -------------------------------------------------------------------------------- /src/xdnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xdnd.c -------------------------------------------------------------------------------- /src/xdnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xdnd.h -------------------------------------------------------------------------------- /src/xinerama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xinerama.c -------------------------------------------------------------------------------- /src/xinerama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xinerama.h -------------------------------------------------------------------------------- /src/xmodifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xmodifier.c -------------------------------------------------------------------------------- /src/xmodifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xmodifier.h -------------------------------------------------------------------------------- /src/xutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xutil.c -------------------------------------------------------------------------------- /src/xutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/src/xutil.h -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/dbus-activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/dbus-activate.sh -------------------------------------------------------------------------------- /test/dbus-info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/dbus-info.sh -------------------------------------------------------------------------------- /test/dbus-ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/dbus-ping.sh -------------------------------------------------------------------------------- /test/dbus-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/dbus-windows.sh -------------------------------------------------------------------------------- /test/dbus-workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/dbus-workspace.sh -------------------------------------------------------------------------------- /test/notest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/notest.c -------------------------------------------------------------------------------- /test/wtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/test/wtest.c -------------------------------------------------------------------------------- /update-changelog.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/update-changelog.pl -------------------------------------------------------------------------------- /util/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/Makefile.am -------------------------------------------------------------------------------- /util/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/README -------------------------------------------------------------------------------- /util/bughint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/bughint -------------------------------------------------------------------------------- /util/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/common.h -------------------------------------------------------------------------------- /util/convertfonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/convertfonts.c -------------------------------------------------------------------------------- /util/fontconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/fontconv.c -------------------------------------------------------------------------------- /util/geticonset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/geticonset.c -------------------------------------------------------------------------------- /util/getstyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/getstyle.c -------------------------------------------------------------------------------- /util/po/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/Makefile.am -------------------------------------------------------------------------------- /util/po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/README -------------------------------------------------------------------------------- /util/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/de.po -------------------------------------------------------------------------------- /util/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/es.po -------------------------------------------------------------------------------- /util/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/fr.po -------------------------------------------------------------------------------- /util/po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/fy.po -------------------------------------------------------------------------------- /util/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/nl.po -------------------------------------------------------------------------------- /util/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/po/pt.po -------------------------------------------------------------------------------- /util/seticons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/seticons.c -------------------------------------------------------------------------------- /util/setstyle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/setstyle.c -------------------------------------------------------------------------------- /util/wdread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wdread.c -------------------------------------------------------------------------------- /util/wdwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wdwrite.c -------------------------------------------------------------------------------- /util/wkdemenu.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wkdemenu.pl -------------------------------------------------------------------------------- /util/wm-oldmenu2new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wm-oldmenu2new -------------------------------------------------------------------------------- /util/wmagnify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmagnify.c -------------------------------------------------------------------------------- /util/wmaker.inst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmaker.inst.in -------------------------------------------------------------------------------- /util/wmcmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmcmd -------------------------------------------------------------------------------- /util/wmgenmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmgenmenu.c -------------------------------------------------------------------------------- /util/wmgenmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmgenmenu.h -------------------------------------------------------------------------------- /util/wmiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmiv.c -------------------------------------------------------------------------------- /util/wmiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmiv.h -------------------------------------------------------------------------------- /util/wmmenugen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmmenugen.c -------------------------------------------------------------------------------- /util/wmmenugen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmmenugen.h -------------------------------------------------------------------------------- /util/wmmenugen_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmmenugen_misc.c -------------------------------------------------------------------------------- /util/wmmenugen_parse_wmconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmmenugen_parse_wmconfig.c -------------------------------------------------------------------------------- /util/wmmenugen_parse_xdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmmenugen_parse_xdg.c -------------------------------------------------------------------------------- /util/wmsetbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmsetbg.c -------------------------------------------------------------------------------- /util/wmshowstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wmshowstatus.c -------------------------------------------------------------------------------- /util/wxcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wxcopy.c -------------------------------------------------------------------------------- /util/wxpaste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/util/wxpaste.c -------------------------------------------------------------------------------- /wmlib/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/COPYING.LIB -------------------------------------------------------------------------------- /wmlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/Makefile.am -------------------------------------------------------------------------------- /wmlib/WMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/WMaker.h -------------------------------------------------------------------------------- /wmlib/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/app.c -------------------------------------------------------------------------------- /wmlib/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/app.h -------------------------------------------------------------------------------- /wmlib/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/command.c -------------------------------------------------------------------------------- /wmlib/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/event.c -------------------------------------------------------------------------------- /wmlib/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/menu.c -------------------------------------------------------------------------------- /wmlib/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wmlib/menu.h -------------------------------------------------------------------------------- /wrlib/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wrlib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/COPYING -------------------------------------------------------------------------------- /wrlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/ChangeLog -------------------------------------------------------------------------------- /wrlib/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/INSTALL -------------------------------------------------------------------------------- /wrlib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/Makefile.am -------------------------------------------------------------------------------- /wrlib/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/NEWS -------------------------------------------------------------------------------- /wrlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/README -------------------------------------------------------------------------------- /wrlib/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/TODO -------------------------------------------------------------------------------- /wrlib/alpha_combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/alpha_combine.c -------------------------------------------------------------------------------- /wrlib/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/color.c -------------------------------------------------------------------------------- /wrlib/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/context.c -------------------------------------------------------------------------------- /wrlib/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/convert.c -------------------------------------------------------------------------------- /wrlib/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/convert.h -------------------------------------------------------------------------------- /wrlib/convolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/convolve.c -------------------------------------------------------------------------------- /wrlib/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/draw.c -------------------------------------------------------------------------------- /wrlib/flip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/flip.c -------------------------------------------------------------------------------- /wrlib/gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/gradient.c -------------------------------------------------------------------------------- /wrlib/imgformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/imgformat.h -------------------------------------------------------------------------------- /wrlib/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load.c -------------------------------------------------------------------------------- /wrlib/load_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_gif.c -------------------------------------------------------------------------------- /wrlib/load_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_jpeg.c -------------------------------------------------------------------------------- /wrlib/load_magick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_magick.c -------------------------------------------------------------------------------- /wrlib/load_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_png.c -------------------------------------------------------------------------------- /wrlib/load_ppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_ppm.c -------------------------------------------------------------------------------- /wrlib/load_tiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_tiff.c -------------------------------------------------------------------------------- /wrlib/load_webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_webp.c -------------------------------------------------------------------------------- /wrlib/load_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_xpm.c -------------------------------------------------------------------------------- /wrlib/load_xpm_normalized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/load_xpm_normalized.c -------------------------------------------------------------------------------- /wrlib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/misc.c -------------------------------------------------------------------------------- /wrlib/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/raster.c -------------------------------------------------------------------------------- /wrlib/rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/rotate.c -------------------------------------------------------------------------------- /wrlib/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/rotate.h -------------------------------------------------------------------------------- /wrlib/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/save.c -------------------------------------------------------------------------------- /wrlib/save_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/save_xpm.c -------------------------------------------------------------------------------- /wrlib/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/scale.c -------------------------------------------------------------------------------- /wrlib/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/scale.h -------------------------------------------------------------------------------- /wrlib/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/Makefile.am -------------------------------------------------------------------------------- /wrlib/tests/ballot_box.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/ballot_box.xpm -------------------------------------------------------------------------------- /wrlib/tests/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/test.png -------------------------------------------------------------------------------- /wrlib/tests/testdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/testdraw.c -------------------------------------------------------------------------------- /wrlib/tests/testgrad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/testgrad.c -------------------------------------------------------------------------------- /wrlib/tests/testrot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/testrot.c -------------------------------------------------------------------------------- /wrlib/tests/tile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/tile.xpm -------------------------------------------------------------------------------- /wrlib/tests/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/tests/view.c -------------------------------------------------------------------------------- /wrlib/wraster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/wraster.h -------------------------------------------------------------------------------- /wrlib/xpixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/xpixmap.c -------------------------------------------------------------------------------- /wrlib/xutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/xutil.c -------------------------------------------------------------------------------- /wrlib/xutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflapp/gs-wmaker/HEAD/wrlib/xutil.h --------------------------------------------------------------------------------