mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-22 06:54:20 +01:00
added romanian menus
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
Makefile Makefile.in
|
Makefile Makefile.in
|
||||||
WMState WMWindowAttributes WindowMaker
|
WMState WMWindowAttributes WindowMaker WMRootMenu
|
||||||
.psrc .inslog2 tca.map tca.log
|
.psrc .inslog2 tca.map tca.log
|
||||||
*.rpt
|
*.rpt
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ prefsdata_DATA =\
|
|||||||
menu.no\
|
menu.no\
|
||||||
menu.pl\
|
menu.pl\
|
||||||
menu.pt\
|
menu.pt\
|
||||||
|
menu.ro\
|
||||||
menu.ru\
|
menu.ru\
|
||||||
menu.se\
|
menu.se\
|
||||||
menu.sl\
|
menu.sl\
|
||||||
@@ -43,6 +44,7 @@ prefsdata_DATA =\
|
|||||||
plmenu.it\
|
plmenu.it\
|
||||||
plmenu.ko\
|
plmenu.ko\
|
||||||
plmenu.pl\
|
plmenu.pl\
|
||||||
|
plmenu.ro\
|
||||||
plmenu.zh_CN\
|
plmenu.zh_CN\
|
||||||
wmmacros\
|
wmmacros\
|
||||||
xtree.dat
|
xtree.dat
|
||||||
|
|||||||
@@ -25,5 +25,5 @@
|
|||||||
IconBack = (mhgradient, "#000000", "#595969", "#444661", "#202831");
|
IconBack = (mhgradient, "#000000", "#595969", "#444661", "#202831");
|
||||||
IconTitleColor = white;
|
IconTitleColor = white;
|
||||||
IconTitleBack = "#4d748f";
|
IconTitleBack = "#4d748f";
|
||||||
MenuStyle = singletexture;
|
MenuStyle = normal;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,10 @@
|
|||||||
* // opens command and uses it's stdout to construct menu.
|
* // opens command and uses it's stdout to construct menu.
|
||||||
* // Command's output must be a valid menu description.
|
* // Command's output must be a valid menu description.
|
||||||
* // The space between '|' and command itself is optional.
|
* // The space between '|' and command itself is optional.
|
||||||
|
* // Use '||' instead of '|' if you want the menu to always update
|
||||||
|
* // when opened. It might be slow.
|
||||||
* OPEN_MENU | command
|
* OPEN_MENU | command
|
||||||
|
* OPEN_MENU || command
|
||||||
* 3. Directory handling.
|
* 3. Directory handling.
|
||||||
* // Opens one or more directories and construct a menu with all
|
* // Opens one or more directories and construct a menu with all
|
||||||
* // the subdirectories and executable files in them sorted
|
* // the subdirectories and executable files in them sorted
|
||||||
|
|||||||
217
WindowMaker/menu.ro
Normal file
217
WindowMaker/menu.ro
Normal file
@@ -0,0 +1,217 @@
|
|||||||
|
/*
|
||||||
|
* Root Menu definition for WindowMaker
|
||||||
|
*
|
||||||
|
* Syntax is:
|
||||||
|
*
|
||||||
|
* <Title> [SHORTCUT <Shortcut>] <Command> <Parameters>
|
||||||
|
*
|
||||||
|
* <Title> is any string to be used as title. Must be enclosed with " if it
|
||||||
|
* has spaces
|
||||||
|
*
|
||||||
|
* SHORTCUT specifies a shortcut for that item. <Shortcut> has the
|
||||||
|
* same syntax of the shortcuts key options in the
|
||||||
|
* $HOME/GNUstep/Defaults/WindowMaker file, such as RootMenuKey or MiniaturizeKey.
|
||||||
|
*
|
||||||
|
* You can't specify a shortcut for a MENU or OPEN_MENU entry.
|
||||||
|
*
|
||||||
|
* <Command> one of the valid commands:
|
||||||
|
* MENU - starts (sub)menu definition
|
||||||
|
* END - end (sub)menu definition
|
||||||
|
* OPEN_MENU - opens a menu from a file, pipe or directory(ies) contents
|
||||||
|
* and eventually precede each with a command.
|
||||||
|
* WORKSPACE_MENU - adds a submenu for workspace operations. Only one
|
||||||
|
* workspace_menu is allowed.
|
||||||
|
* EXEC <program> - executes an external program
|
||||||
|
* SHEXEC <command> - executes a shell command (like gimp > /dev/null)
|
||||||
|
* EXIT - exits the window manager
|
||||||
|
* RESTART [<window manager>] - restarts WindowMaker or start another
|
||||||
|
* window manager
|
||||||
|
* REFRESH - refreshes the desktop
|
||||||
|
* ARRANGE_ICONS - rearranges the icons on the workspace
|
||||||
|
* SHUTDOWN - kills all clients (and close the X window session)
|
||||||
|
* SHOW_ALL - unhides all windows on workspace
|
||||||
|
* HIDE_OTHERS - hides all windows on the workspace, except the
|
||||||
|
* focused one (or the last one that received focus)
|
||||||
|
* SAVE_SESSION - saves the current state of the desktop, which include
|
||||||
|
* all running applications, all their hints (geometry,
|
||||||
|
* position on screen, workspace they live on, the dock
|
||||||
|
* or clip from where they were launched, and
|
||||||
|
* if minimized, shaded or hidden. Also saves the current
|
||||||
|
* workspace the user is on. All will be restored on every
|
||||||
|
* start of windowmaker until another SAVE_SESSION or
|
||||||
|
* CLEAR_SESSION is used. If SaveSessionOnExit = Yes; in
|
||||||
|
* WindowMaker domain file, then saving is automatically
|
||||||
|
* done on every windowmaker exit, overwriting any
|
||||||
|
* SAVE_SESSION or CLEAR_SESSION (see below).
|
||||||
|
* CLEAR_SESSION - clears any previous saved session. This will not have
|
||||||
|
* any effect if SaveSessionOnExit is True.
|
||||||
|
* INFO - shows the Info Panel
|
||||||
|
*
|
||||||
|
* OPEN_MENU syntax:
|
||||||
|
* 1. File menu handling.
|
||||||
|
* // opens file.menu which must contain a valid menu file and inserts
|
||||||
|
* // it in current position
|
||||||
|
* OPEN_MENU file.menu
|
||||||
|
* 2. Pipe menu handling.
|
||||||
|
* // opens command and uses it's stdout to construct menu.
|
||||||
|
* // Command's output must be a valid menu description.
|
||||||
|
* // The space between '|' and command itself is optional.
|
||||||
|
* OPEN_MENU | command
|
||||||
|
* 3. Directory handling.
|
||||||
|
* // Opens one or more directories and construct a menu with all
|
||||||
|
* // the subdirectories and executable files in them sorted
|
||||||
|
* // alphabetically.
|
||||||
|
* OPEN_MENU /some/dir [/some/other/dir ...]
|
||||||
|
* 4. Directory handling with command.
|
||||||
|
* // Opens one or more directories and construct menu with all
|
||||||
|
* // subdirectories and readable files in them sorted alphabetically,
|
||||||
|
* // preceding each of them with command.
|
||||||
|
* OPEN_MENU [options] /some/dir [/some/other/dir ...] WITH command -options
|
||||||
|
* Options:
|
||||||
|
* -noext strip whatever is after the last dot in the
|
||||||
|
* file name
|
||||||
|
*
|
||||||
|
* <Parameters> is the program to execute.
|
||||||
|
*
|
||||||
|
* ** Options for command line in EXEC:
|
||||||
|
* %s - substitute with current selection
|
||||||
|
* %a(title[,prompt]) - opens a input box with the specified title and the
|
||||||
|
* optional prompt and do substitution with what you typed
|
||||||
|
* %w - substitute with XID for the current focused window
|
||||||
|
* %W - substitute with the number of the current workspace
|
||||||
|
*
|
||||||
|
* You can override special characters (as % and ") with the \ character:
|
||||||
|
* ex: xterm -T "\"Hello World\""
|
||||||
|
*
|
||||||
|
* You can also use character escapes, like \n
|
||||||
|
*
|
||||||
|
* Each MENU statement must have one mathching END statement at the end.
|
||||||
|
*
|
||||||
|
* Example:
|
||||||
|
*
|
||||||
|
* "Test" MENU
|
||||||
|
* "XTerm" EXEC xterm
|
||||||
|
* // creates a submenu with the contents of /usr/openwin/bin
|
||||||
|
* "XView apps" OPEN_MENU "/usr/openwin/bin"
|
||||||
|
* // some X11 apps in different directories
|
||||||
|
* "X11 apps" OPEN_MENU /usr/X11/bin $HOME/bin/X11
|
||||||
|
* // set some background images
|
||||||
|
* "Background" OPEN_MENU -noext $HOME/images /usr/share/images WITH wmsetbg -u -t
|
||||||
|
* // inserts the style.menu in this entry
|
||||||
|
* "Style" OPEN_MENU style.menu
|
||||||
|
* "Test" END
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "wmmacros"
|
||||||
|
|
||||||
|
"Aplicaþii" MENU
|
||||||
|
"Informaþii" MENU
|
||||||
|
"Panou cu Informaþii" INFO_PANEL
|
||||||
|
"Panou cu Licenþa" LEGAL_PANEL
|
||||||
|
"Consola Sistem" EXEC xconsole
|
||||||
|
"Încãrcarea Sistemului" SHEXEC xosview || xload
|
||||||
|
"Lista Proceselor" EXEC xterm -e top
|
||||||
|
"Navigator de Pagini Man" EXEC xman
|
||||||
|
"Informaþii" END
|
||||||
|
"Executã..." SHEXEC %a(Executã,Introduceþi o comandã:)
|
||||||
|
"XTerm" EXEC xterm -sb
|
||||||
|
"Rxvt" EXEC rxvt -bg black -fg white -fn -misc-fixed-medium-*-*--*-*-*-*-*-*-iso8859-2 -fb -misc-fixed-medium-*-*--*-*-*-*-*-*-iso8859-2
|
||||||
|
"Spaþii de Lucru" WORKSPACE_MENU
|
||||||
|
"Aplicaþii" MENU
|
||||||
|
"Graficã" MENU
|
||||||
|
"Gimp" SHEXEC gimp >/dev/null
|
||||||
|
"XV" EXEC xv
|
||||||
|
"XPaint" EXEC xpaint
|
||||||
|
"XFig" EXEC xfig
|
||||||
|
"Graficã" END
|
||||||
|
"Manager de Fiºiere" EXEC xfm
|
||||||
|
"Fisiere OffiX" EXEC files
|
||||||
|
"LyX" EXEC lyx
|
||||||
|
"Netscape" EXEC netscape
|
||||||
|
"Ghostview" EXEC ghostview %a(GhostView,Enter file to view)
|
||||||
|
"Acrobat" EXEC /usr/local/Acrobat3/bin/acroread %a(Acrobar,Enter PDF to view)
|
||||||
|
"TkDesk" EXEC tkdesk
|
||||||
|
"Aplicaþii" END
|
||||||
|
"Editoare" MENU
|
||||||
|
"XFte" EXEC xfte
|
||||||
|
"XEmacs" SHEXEC xemacs || emacs
|
||||||
|
"XJed" EXEC xjed
|
||||||
|
"NEdit" EXEC nedit
|
||||||
|
"Xedit" EXEC xedit
|
||||||
|
"VI" EXEC xterm -e vi
|
||||||
|
"Editoare" END
|
||||||
|
"Altele" MENU
|
||||||
|
"Xmcd" SHEXEC xmcd 2> /dev/null
|
||||||
|
"Xplaycd" EXEC xplaycd
|
||||||
|
"Xmixer" EXEC xmixer
|
||||||
|
"Altele" END
|
||||||
|
"Utilitare" MENU
|
||||||
|
"Calculator" EXEC xcalc
|
||||||
|
"Proprietãþile Ferestrei..." SHEXEC xprop | xmessage -center -title 'xprop' -file -
|
||||||
|
"Navigator de Fonturi" EXEC xfontsel
|
||||||
|
"Emulator de Terminal" EXEC xminicom
|
||||||
|
"Lupã" EXEC xmag
|
||||||
|
"Culori" EXEC xcmap
|
||||||
|
"Omoarã Fereastra..." EXEC xkill
|
||||||
|
"Clipboard" EXEC xclipboard
|
||||||
|
"Utilitare" END
|
||||||
|
|
||||||
|
"Selecþie" MENU
|
||||||
|
"Copiazã" SHEXEC echo '%s' | wxcopy
|
||||||
|
"Poºtã cãtre" EXEC xterm -name mail -T "Pine" -e pine %s
|
||||||
|
"Navigheazã" EXEC netscape %s
|
||||||
|
"Cautã în Manual" SHEXEC MANUAL_SEARCH(%s)
|
||||||
|
"Selecþie" END
|
||||||
|
|
||||||
|
"Spaþiu de Lucru" MENU
|
||||||
|
"Ascunde Celelalte" HIDE_OTHERS
|
||||||
|
"Aratã Tot" SHOW_ALL
|
||||||
|
"Aranjeazã Iconiþele" ARRANGE_ICONS
|
||||||
|
"Reîmprospãteazã" REFRESH
|
||||||
|
"Blocheazã" EXEC xlock -allowroot -usefirst
|
||||||
|
"Salveazã Sesiunea" SAVE_SESSION
|
||||||
|
"ªterge Setãrile de Sesiune" CLEAR_SESSION
|
||||||
|
"Spaþiu de Lucru" END
|
||||||
|
|
||||||
|
"Configurare" MENU
|
||||||
|
"Teme" OPEN_MENU -noext THEMES_DIR $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle
|
||||||
|
"Stiluri" OPEN_MENU -noext STYLES_DIR $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle
|
||||||
|
"Seturi de Icoane" OPEN_MENU -noext ICON_SETS_DIR $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons
|
||||||
|
"Fundal" MENU
|
||||||
|
"Solid" MENU
|
||||||
|
"Negru" WS_BACK '(solid, black)'
|
||||||
|
"Albastru" WS_BACK '(solid, "#505075")'
|
||||||
|
"Indigo" WS_BACK '(solid, "#243e6c")'
|
||||||
|
"Bleumarin" WS_BACK '(solid, "#224477")'
|
||||||
|
"Violet" WS_BACK '(solid, "#554466")'
|
||||||
|
"Gãlbui" WS_BACK '(solid, "wheat4")'
|
||||||
|
"Gri Închis" WS_BACK '(solid, "#333340")'
|
||||||
|
"Viºiniu" WS_BACK '(solid, "#400020")'
|
||||||
|
"Solid" END
|
||||||
|
"Gradientat" MENU
|
||||||
|
"Apus" WS_BACK '(mvgradient, deepskyblue4, black, deepskyblue4, tomato4)'
|
||||||
|
"Cer" WS_BACK '(vgradient, blue4, white)'
|
||||||
|
"Gradient Albastru" WS_BACK '(vgradient, "#7080a5", "#101020")'
|
||||||
|
"Gradient Indigo" WS_BACK '(vgradient, "#746ebc", "#242e4c")'
|
||||||
|
"Gradient Violet" WS_BACK '(vgradient, "#654c66", "#151426")'
|
||||||
|
"Gradient Gãlbui" WS_BACK '(vgradient, "#a09060", "#302010")'
|
||||||
|
"Gradient Gri" WS_BACK '(vgradient, "#636380", "#131318")'
|
||||||
|
"Gradient Viºiniu" WS_BACK '(vgradient, "#600040", "#180010")'
|
||||||
|
"Gradientat" END
|
||||||
|
"Imagini" OPEN_MENU -noext BACKGROUNDS_DIR $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t
|
||||||
|
"Fundal" END
|
||||||
|
"Salveazã Tema" SHEXEC getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/"%a(Theme name,Enter file name:)"
|
||||||
|
"Salveazã Setul de Iconiþe" SHEXEC geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/"%a(IconSet name,Enter file name:)"
|
||||||
|
"Utilitar de Configurare" EXEC /usr/local/GNUstep/Apps/WPrefs.app/WPrefs
|
||||||
|
"Configurare" END
|
||||||
|
|
||||||
|
"Ieºire" MENU
|
||||||
|
"Repornire" RESTART
|
||||||
|
"Porneºte BlackBox" RESTART blackbox
|
||||||
|
"Porneºte kwm" RESTART kwm
|
||||||
|
"Porneºte IceWM" RESTART icewm
|
||||||
|
"Ieºi" EXIT
|
||||||
|
"Ieºire" END
|
||||||
|
"Aplicaþii" END
|
||||||
|
|
||||||
|
|
||||||
106
WindowMaker/plmenu.ro
Normal file
106
WindowMaker/plmenu.ro
Normal file
@@ -0,0 +1,106 @@
|
|||||||
|
("Aplicaþii",
|
||||||
|
("Informaþii",
|
||||||
|
("Panou cu Informaþii", INFO_PANEL),
|
||||||
|
("Panou cu Licenþa", LEGAL_PANEL),
|
||||||
|
("Consola Sistem", EXEC, "xconsole"),
|
||||||
|
("Încãrcarea Sistemului", SHEXEC, "xosview || xload"),
|
||||||
|
("Lista de Procese", EXEC, "xterm -e top"),
|
||||||
|
("Navigator de Pagini Man", EXEC, "xman")
|
||||||
|
),
|
||||||
|
("Executã...", SHEXEC, "%a(Executã,Introduceþi o comandã:)"),
|
||||||
|
("XTerm", EXEC, "xterm -sb"),
|
||||||
|
("Rxvt", EXEC, "rxvt -fg white -bg black -fn -misc-fixed-medium-*-*--*-*-*-*-*-*-iso8859-2 -fb -misc-fixed-medium-*-*--*-*-*-*-*-*-iso8859-2"),
|
||||||
|
("Spaþii de Lucru", WORKSPACE_MENU),
|
||||||
|
("Aplicaþii",
|
||||||
|
("Graficã",
|
||||||
|
("Gimp", SHEXEC, "gimp >/dev/null"),
|
||||||
|
("XV", EXEC, "xv"),
|
||||||
|
("XPaint", EXEC, "xpaint"),
|
||||||
|
("XFig", EXEC, "xfig")
|
||||||
|
),
|
||||||
|
("Manager de Fiºiere", EXEC, "xfm"),
|
||||||
|
("Fiºiere OffiX", EXEC, "files"),
|
||||||
|
("LyX", EXEC, "lyx"),
|
||||||
|
("Netscape", EXEC, "netscape"),
|
||||||
|
("Ghostview", EXEC, "ghostview %a(Enter file to view)"),
|
||||||
|
("Acrobat", EXEC, "/usr/local/Acrobat3/bin/acroread %a(Enter PDF to view)"),
|
||||||
|
("TkDesk", EXEC, "tkdesk")
|
||||||
|
),
|
||||||
|
("Editoare",
|
||||||
|
("XFte", EXEC, "xfte"),
|
||||||
|
("XEmacs", SHEXEC, "xemacs || emacs"),
|
||||||
|
("XJed", EXEC, "xjed"),
|
||||||
|
("NEdit", EXEC, "nedit"),
|
||||||
|
("Xedit", EXEC, "xedit"),
|
||||||
|
("VI", EXEC, "xterm -e vi")
|
||||||
|
),
|
||||||
|
("Altele",
|
||||||
|
("Xmcd", SHEXEC, "xmcd 2> /dev/null"),
|
||||||
|
("Xplaycd", EXEC, "xplaycd"),
|
||||||
|
("Xmixer", EXEC, "xmixer")
|
||||||
|
),
|
||||||
|
("Utilitare",
|
||||||
|
("Calculator", EXEC, "xcalc"),
|
||||||
|
("Proprietãþile Ferestrei...", SHEXEC, "xprop | xmessage -center -title 'xprop' -file -"),
|
||||||
|
("Navigator de Fonturi", EXEC, "xfontsel"),
|
||||||
|
("Emulator de Terminal", EXEC, "xminicom"),
|
||||||
|
("Lupã", EXEC, "xmag"),
|
||||||
|
("Culori", EXEC, "xcmap"),
|
||||||
|
("Omoarã fereastra...", EXEC, "xkill"),
|
||||||
|
("ASClock", EXEC, "asclock -shape"),
|
||||||
|
("Clipboard", EXEC, "xclipboard")
|
||||||
|
),
|
||||||
|
("Selecþie",
|
||||||
|
("Copiazã", SHEXEC, "echo '%s' | wxcopy"),
|
||||||
|
("Poºtã cãtre", EXEC, "xterm -name mail -T Pine -e pine %s"),
|
||||||
|
("Navigheazã", EXEC, "netscape %s"),
|
||||||
|
("Cautã în Manual", EXEC, "MANUAL_SEARCH(%s)")
|
||||||
|
),
|
||||||
|
("Spaþiu de Lucru",
|
||||||
|
("Ascunde Celelalte", HIDE_OTHERS),
|
||||||
|
("Aratã celelalte", SHOW_ALL),
|
||||||
|
("Aranjeazã Iconiþele", ARRANGE_ICONS),
|
||||||
|
("Reîmprospãteazã", REFRESH),
|
||||||
|
("Blocheazã", EXEC, "xlock -allowroot -usefirst"),
|
||||||
|
("Salveazã Sesiunea", SAVE_SESSION),
|
||||||
|
("ªterge Setãrile de Sesiune", CLEAR_SESSION)
|
||||||
|
),
|
||||||
|
("Configurare",
|
||||||
|
("Teme", OPEN_MENU, "-noext #wmdatadir#/Themes $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle"),
|
||||||
|
("Stiluri", OPEN_MENU, "-noext #wmdatadir#/Styles $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle"),
|
||||||
|
("Seturi de Iconiþe", OPEN_MENU, "-noext #wmdatadir#/IconSets $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons"),
|
||||||
|
("Fundal",
|
||||||
|
("Solid",
|
||||||
|
("Negru", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, black)'"),
|
||||||
|
("Albastru", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, \"#505075\")'"),
|
||||||
|
("Indigo", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, \"#243e6c\")'"),
|
||||||
|
("Bleumarin", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, \"#224477\")'"),
|
||||||
|
("Violet", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, \"#554466\")'"),
|
||||||
|
("Gãlbui", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, wheat4)'"),
|
||||||
|
("Gri Închis", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, \"#333340\")'"),
|
||||||
|
("Viºiniu", EXEC, "wdwrite WindowMaker WorkspaceBack '(solid, \"#400020\")'")
|
||||||
|
),
|
||||||
|
("Gradientat",
|
||||||
|
("Apus", EXEC, "wdwrite WindowMaker WorkspaceBack '(mvgradient, deepskyblue4, black, deepskyblue4, tomato4)'"),
|
||||||
|
("Cer", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, blue4, white)'"),
|
||||||
|
("Gradient Albastru", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#7080a5\", \"#101020\")'"),
|
||||||
|
("Gradient Indigo", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#746ebc\", \"#242e4c\")'"),
|
||||||
|
("Gradient Violet", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#654c66\", \"#151426\")'"),
|
||||||
|
("Gradient Gãlbui", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#a09060\", \"#302010\")'"),
|
||||||
|
("Gradient Gri", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#636380\", \"#131318\")'"),
|
||||||
|
("Gradient Viºiniu", EXEC, "wdwrite WindowMaker WorkspaceBack '(vgradient, \"#600040\", \"#180010\")'")
|
||||||
|
),
|
||||||
|
("Imagini", OPEN_MENU, "-noext #wmdatadir#/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t")
|
||||||
|
),
|
||||||
|
("Salveazã Tema", SHEXEC, "getstyle -t $HOME/GNUstep/Library/WindowMaker/Themes/\"%a(Theme name)\""),
|
||||||
|
("Salveazã Setul de Iconiþe", SHEXEC, "geticonset $HOME/GNUstep/Library/WindowMaker/IconSets/\"%a(IconSet name)\""),
|
||||||
|
("Utilitar de Configurare", EXEC, "/usr/local/GNUstep/Apps/WPrefs.app/WPrefs")
|
||||||
|
),
|
||||||
|
("Ieºire",
|
||||||
|
("Repornire", RESTART),
|
||||||
|
("Porneºte BlackBox", RESTART, blackbox),
|
||||||
|
("Porneºte kwm", RESTART, kwm),
|
||||||
|
("Porneºte IceWM", RESTART, icewm),
|
||||||
|
("Ieºi", EXIT)
|
||||||
|
)
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user