diff --git a/live/Makefile b/live/Makefile index cb1535e0d9..af167f01b7 100644 --- a/live/Makefile +++ b/live/Makefile @@ -15,6 +15,8 @@ FLAVOR = openSUSE # to use a different project run "make build OBS_PROJECT=" OBS_PROJECT = "systemsmanagement:Agama:Devel" OBS_PACKAGE = "agama-installer" +# to use internal OBS add "OBS_API=https://api.suse.de" +OBS_API = "https://api.opensuse.org" # files to copy from src/ COPY_FILES = $(patsubst $(SRCDIR)/%,$(DESTDIR)/%,$(wildcard $(SRCDIR)/*)) @@ -53,8 +55,9 @@ $(DESTDIR)/%.tar.xz: % $$(shell find % -type f,l) # build the ISO locally build: $(DESTDIR) - if [ ! -e $(DESTDIR)/.osc ]; then make clean; osc co -o $(DESTDIR) $(OBS_PROJECT) $(OBS_PACKAGE); fi + if [ ! -e $(DESTDIR)/.osc ]; then make clean; osc -A $(OBS_API) co -o $(DESTDIR) $(OBS_PROJECT) $(OBS_PACKAGE); fi $(MAKE) all - (cd $(DESTDIR) && osc build -M $(FLAVOR) images) + # allow passing optional parameters to osc like "-p " or "-k " + (cd $(DESTDIR) && osc -A $(OBS_API) build -M $(FLAVOR) $(OSC_OPTS) images) .PHONY: build all clean diff --git a/live/root/etc/icewm/preferences.yast2 b/live/root/etc/icewm/preferences.yast2 new file mode 100644 index 0000000000..4c47102782 --- /dev/null +++ b/live/root/etc/icewm/preferences.yast2 @@ -0,0 +1,104 @@ +# IceWM configuration file for use during installation + +# Hide taskbar +ShowTaskBar=0 + +# Enable Alt+Tab +QuickSwitch=1 +KeySysSwitchNext="Alt+Tab" +KeySysSwitchLast="Alt+Shift+Tab" + +# Disable Windows key +Win95Keys=0 + +# Borders +BorderSizeX=3 +BorderSizeY=3 +DlgBorderSizeX=3 +DlgBorderSizeY=3 + +# Disable most shortcuts +# :r !grep -o '\ + +- configure xterm to use the default fixed font also in the + configuration popup menu (Ctrl + click) to avoid crash +- bsc#1235478 + - tuned IceWM setup to disable some desktop functionality like + opening main menu using the Win key (by mfilka@suse.com) + ------------------------------------------------------------------- Mon Feb 3 23:08:34 UTC 2025 - Eugenio Paolantonio