-
-
Notifications
You must be signed in to change notification settings - Fork 40
Update wallpaper and Fix MATE OEM script. #252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Replace wallpaper with "blue-layered-stripes.jpg." - Remove obsolete Git setup functions from script.
Contributor
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates the MATE OEM setup script to use a new default wallpaper and installation command, and removes obsolete Git-based setup calls that are no longer needed. Sequence diagram for updated MATE OEM X session startupsequenceDiagram
actor User
participant Lightdm as Lightdm
participant XSession as X_session
participant XinitrcLive as Xinitrc_live_user
participant Marco as Marco_wm
participant Feh as Feh_wallpaper
participant InstallInit as Install_station_init
User ->> Lightdm: Authenticate on login screen
Lightdm ->> XSession: Start session for live_user
XSession ->> XinitrcLive: Read .xinitrc commands
XinitrcLive ->> Marco: exec marco &
XinitrcLive ->> Feh: exec feh --bg-fill blue-layered-stripes.jpg &
XinitrcLive ->> InstallInit: exec sudo install-station-init
Marco -->> User: Provide window management
Feh -->> User: Display blue-layered-stripes wallpaper
InstallInit -->> User: Launch installation initialization
Flow diagram for updated mate_oem.sh setup processflowchart TD
A[mate_oem_sh_start] --> B[patch_etc_files]
B --> C[patch_loader_conf_d]
C --> D[ghostbsd_setup_liveuser]
D --> E[ghostbsd_setup_autologin]
E --> F[lightdm_setup]
F --> G[setup_xinit]
subgraph setup_xinit_logic
G --> H[write_live_user_xinitrc_marco]
H --> I[write_live_user_xinitrc_feh_blue_layered_stripes]
I --> J[write_live_user_xinitrc_install_station_init]
J --> K[chmod_live_user_xinitrc_765]
K --> L[write_root_xinitrc_marco]
L --> M[write_root_xinitrc_feh_blue_layered_stripes]
M --> N[write_root_xinitrc_setup_station]
end
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary by Sourcery
Update the MATE OEM configuration script to use the new default wallpaper and simplify the live system setup.
Bug Fixes:
Enhancements: