Skip to content

Commit

Permalink
Use <o> as a sort of symbol for the program
Browse files Browse the repository at this point in the history
  • Loading branch information
lpenz committed Jan 29, 2025
1 parent 18af90e commit e838677
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![crates.io](https://img.shields.io/crates/v/ogle)](https://crates.io/crates/ogle)
[![packagecloud](https://img.shields.io/badge/deb-packagecloud.io-844fec.svg)](https://packagecloud.io/app/lpenz/debian/search?q=ogle)

# ogle
# <o> ogle

**ogle** is a program that runs the given command-line periodically,
showing the output only when it is different than the last.
Expand Down
2 changes: 1 addition & 1 deletion src/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn term_clear_line(term: &Term) -> Result<()> {
}

pub fn ofmt_helper(timestamp: &Instant, line: &str) -> String {
format!("=> {} {}", timestamp, line)
format!("<o> {} {}", timestamp, line)
}

macro_rules! ofmt {
Expand Down

0 comments on commit e838677

Please sign in to comment.