-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add the extension zip into the release Signed-off-by: Roy Golan <[email protected]> * Use font-variant normal for the container extra-info Signed-off-by: Roy Golan <[email protected]> * Support configuring the terminal program The extension preferences has a new entry for the terminal program to use for running the commands in a terminal. The default value is "gnome-terminal --" which is the current behaviour. Here are terminal values that were tested and worked: "gnome-terminal --" "ptyxis --" "kitty" "flatpak run com.gexperts.Tilix -e" "flatpak run app.studiodev.Ptyxis --" Signed-off-by: Roy Golan <[email protected]> * ci: lint action update - migrate to eslint 9 - migrate .eslint.yaml to eslint.config.mjs Signed-off-by: Roy Golan <[email protected]> * Lint fixes Signed-off-by: Roy Golan <[email protected]> * Fix Main.notify call to use 2 args Signed-off-by: Roy Golan <[email protected]> * Support gnome 47 Signed-off-by: Roy Golan <[email protected]> --------- Signed-off-by: Roy Golan <[email protected]>
- Loading branch information
Showing
13 changed files
with
401 additions
and
348 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ EXTRA_SOURCES = \ | |
--extra-source=classic.css \ | ||
--extra-source=modules | ||
|
||
build: | ||
build: lint | ||
gnome-extensions pack -f $(EXTRA_SOURCES) src/ | ||
mv [email protected] $(TARGET_FILE) | ||
|
||
|
@@ -18,9 +18,12 @@ enable: | |
debug: | ||
G_MESSAGES_DEBUG="GNOME Shell" dbus-run-session -- gnome-shell --nested --wayland | ||
|
||
lint: | ||
npm run lint | ||
|
||
all: \ | ||
install \ | ||
enable | ||
|
||
.PHONY: build debug enable install all | ||
.PHONY: build debug enable install all lint | ||
|
This file contains 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
Oops, something went wrong.