-
Notifications
You must be signed in to change notification settings - Fork 7
Detect latest upstream versions #9
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
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
f6c0bc6
Detect latest upstream versions
lwbt 324299c
Add some fixes
lwbt 8d1ded1
Optimize images
lwbt 26ba886
Add icon to appdata
lwbt 43fb11e
Investigate failure
lwbt f5c0521
Fix
lwbt 4a0bd2b
Fix Gnome dock issues
lwbt 79711ca
Configure desktop file as it is done in WezTerm
lwbt b10089c
Revert and use static versions
lwbt 003c168
Remove wezterm refernece from commented section
lwbt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| *.AppImage | ||
| *.tar.gz | ||
|
|
||
| # Swap | ||
| [._]*.s[a-v][a-z] | ||
| !*.svg # comment out if you don't need vector files | ||
| [._]*.sw[a-p] | ||
| [._]s[a-rt-v][a-z] | ||
| [._]ss[a-gi-z] | ||
| [._]sw[a-p] | ||
|
|
||
| # Session | ||
| Session.vim | ||
| Sessionx.vim | ||
|
|
||
| # Temporary | ||
| .netrwhist | ||
| *~ | ||
| # Auto-generated tag files | ||
| tags | ||
| # Persistent undo | ||
| [._]*.un~ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <component type="desktop-application"> | ||
| <content_rating type="oars-1.0" /> | ||
| <id>com.mitchellh.ghostty</id> | ||
| <metadata_license>MIT</metadata_license> | ||
| <project_license>MIT</project_license> | ||
| <name>Ghostty</name> | ||
| <icon type="remote">https://raw.githubusercontent.com/ghostty-org/ghostty/refs/heads/main/images/icons/icon_256.png</icon> | ||
| <summary>Fast, native, feature-rich terminal emulator pushing modern features</summary> | ||
| <description> | ||
| <p> | ||
| Ghostty is a terminal emulator that differentiates itself by being fast, | ||
| feature-rich, and native. While there are many excellent terminal | ||
| emulators available, they all force you to choose between speed, | ||
| features, or native UIs. Ghostty provides all three. | ||
| </p> | ||
|
|
||
| <p> | ||
| In all categories, I am not trying to claim that Ghostty is the best | ||
| (i.e. the fastest, most feature-rich, or most native). But Ghostty is | ||
| competitive in all three categories and Ghostty doesn't make you choose | ||
| between them. | ||
| </p> | ||
|
|
||
| <p> | ||
| Ghostty also intends to push the boundaries of what is possible with a | ||
| terminal emulator by exposing modern, opt-in features that enable CLI | ||
| tool developers to build more feature rich, interactive applications. | ||
| </p> | ||
|
|
||
| <p> | ||
| While aiming for this ambitious goal, our first step is to make Ghostty | ||
| one of the best fully standards compliant terminal emulator, remaining | ||
| compatible with all existing shells and software while supporting all of | ||
| the latest terminal innovations in the ecosystem. You can use Ghostty as | ||
| a drop-in replacement for your existing terminal emulator. | ||
| </p> | ||
| </description> | ||
|
|
||
| <launchable type="desktop-id">com.mitchellh.ghostty.desktop</launchable> | ||
|
|
||
| <url type="homepage">https://ghostty.org/</url> | ||
| <url type="help">https://ghostty.org/docs/about</url> | ||
| <url type="bugtracker">https://github.com/ghostty-org/ghostty/issues</url> | ||
|
|
||
| <!-- tbd | ||
| <screenshots> | ||
| <screenshot type="default"> | ||
| <caption>Use background image attachments</caption> | ||
| <image>https://ghostty.org/tbd-screenshot.png</image> | ||
| </screenshot> | ||
| </screenshots> | ||
| --> | ||
|
|
||
| <developer id="com.mitchellh"> | ||
| <name>Mitchell Hashimoto</name> | ||
| </developer> | ||
|
|
||
| <releases> | ||
| <release version="v1.0.1+1" date="2025-01-09"> | ||
| <description> | ||
| <p> | ||
| Initial AppImage build. | ||
| </p> | ||
| </description> | ||
| </release> | ||
| </releases> | ||
| </component> | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| [Desktop Entry] | ||
| Name=Ghostty | ||
| Type=Application | ||
| Comment=A terminal emulator | ||
| Exec=ghostty | ||
| Icon=com.mitchellh.ghostty | ||
| StartupWMClass=com.mitchellh.ghostty | ||
| Categories=System;TerminalEmulator;Utility; | ||
| Keywords=terminal;tty;pty; | ||
| StartupNotify=true | ||
| Terminal=false | ||
| Actions=new-window; | ||
| X-GNOME-UsesNotifications=true | ||
| X-TerminalArgExec=-e | ||
| X-TerminalArgTitle=--title= | ||
| X-TerminalArgAppId=--class= | ||
| X-TerminalArgDir=--working-directory= | ||
| X-TerminalArgHold=--wait-after-command | ||
|
|
||
| [Desktop Action new-window] | ||
| Name=New Window | ||
| Exec=ghostty |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.