Skip to content

Commit

Permalink
Update README with image.
Browse files Browse the repository at this point in the history
Increments-patch-version-of: other
  • Loading branch information
dajofrey committed Jan 25, 2024
1 parent c633a8b commit 655bfa4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# TTýr

TODO
Terminal Emulator Written In C99.

![tiling](./build/data/image/screenshot.png)

What makes TTýr special?

- Minimalistic Design
- Hybrid Tabing/Tiling
- GPU Acceleration
- API

## Contents

Expand Down
Binary file added build/data/image/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions scripts/prepare-commit-msg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Declare an empty array
files_to_process=()
other=false
other="false"

# Run 'git diff --staged --name-only' and process each line
while IFS= read -r line; do
Expand All @@ -11,7 +11,7 @@ while IFS= read -r line; do
# Add the line to the array
files_to_process+=("$line")
else
other=true
other="true"
fi
done < <(git diff --staged --name-only)

Expand Down Expand Up @@ -75,7 +75,7 @@ for unique_file in "${unique_files[@]}"; do
done
done

if other
if [[ "$other" = true ]]; then
echo -e "\nWorkload in: other"
echo "Workload scope options:"
for option in "${workload_options[@]}"; do
Expand Down

0 comments on commit 655bfa4

Please sign in to comment.