Skip to content
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

Add Foot Terminal #2592

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/Foot Terminal/credits
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Daniel Eklöf on Codeberg
3 changes: 3 additions & 0 deletions apps/Foot Terminal/description
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
A fast, lightweight and minimalistic Wayland terminal emulator

Run from Terminal: foot
Binary file added apps/Foot Terminal/icon-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/Foot Terminal/icon-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions apps/Foot Terminal/packages
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foot
1 change: 1 addition & 0 deletions apps/Foot Terminal/website
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://codeberg.org/dnkl/foot
1 change: 1 addition & 0 deletions etc/categories
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Firefox Rapid Release|Internet/Browsers
Flameshot|Tools
Floorp|Internet/Browsers
Flow|Internet/Browsers
Foot Terminal|Terminals
FreeCAD|Engineering
FreeTube|Multimedia
Friday Night Funkin' Rewritten|Games
Expand Down
6 changes: 5 additions & 1 deletion etc/terminal-run
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ tilix
tilix.wrapper
qterminal
alacritty
kitty'
kitty
foot'

#Try to honor the preference of update-alternatives x-terminal-emulator
terminal="$(basename "$(readlink -f "$(command -v x-terminal-emulator)")")"
Expand Down Expand Up @@ -111,6 +112,9 @@ elif [ "$choice" == alacritty ];then

elif [ "$choice" == kitty ];then
kitty bash -c "$commands" &

elif [ "$choice" == foot ];then
foot bash -c "$commands" &

else
error 'Failed to locate any terminal emulators!!!'"
Expand Down
Loading