-
Notifications
You must be signed in to change notification settings - Fork 50
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
feat: optionally use POP_LAUNCHER_LIB_DIR env variable #242
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Ryan Brue <[email protected]>
e79a950
to
b2af36f
Compare
Note that we will also need to update |
Shouldn't be necessary since it (cosmic-launcher) communicates to the pop-launcher sub-process via IPC over stdin/stdout. |
Oh I didn't know, thanks! |
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.
This moves the system-wide pop-launcher/{plugins,scripts}
directories from /usr/lib/
to /usr/libexec/
. There's no change in behavior.
Regression testing passed:
Launcher
- All windows on all workspaces appear on launch
- Choosing an app on another workspace moves workspaces and focus to that app
- Launching an application works
- Typing text and then removing it will re-show those windows
- Search works for applications and windows
- Search works for GNOME settings panels
- Search for "Extensions". There should be only one entry.
- The overlay hint correctly highlights the selected window
- Open windows are sorted above applications (e.g. "firefox")
- t: executes a command in a terminal
- : executes a command in sh
- = calculates an equation
- Search results are as expected:
cal
returns Calendar and Calculator before Colorpops
returns Popsicle firstshop
returns the Pop!_Shop first
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.
I believe both Arch and NixOS have issues with /usr/libexec. The best thing to do is make it configurable.
@jackpot51 how's this? |
e4dc30b
to
2f2e927
Compare
This environment variable describes where the pop-launcher distribution path exists. The default for this is `/usr/lib/pop-launcher`; however, some distributions would like to use `/usr/libexec/pop-launcher` instead. Signed-off-by: Ryan Brue <[email protected]>
|
I wonder how the Except that, i have some suggestion/question
|
This environment variable describes where the pop-launcher distribution path exists. The default for this is
/usr/lib/pop-launcher
; however, some distributions would like to use/usr/libexec/pop-launcher
instead.