Skip to content

Commit

Permalink
README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Goheeca committed May 17, 2019
1 parent 05e589f commit 9708c85
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 @@ -14,7 +14,7 @@ FbTerm is a fast terminal emulator for linux with frame buffer device or VESA vi
* change the orientation of screen display, a.k.a. screen rotation
* lightweight input method framework with client-server architecture
* background image for eye candy (set `FBTERM_BACKGROUND_IMAGE`)
* mmapped background image (set `FBTERM_BACKGROUND_IMAGE_PATH` to the file)
* background image fed through shared memory (set `FBTERM_BACKGROUND_IMAGE_PATH` to the shared memory path (e.g. `/fbterm.background` for `/dev/shm/fbterm.background` in linux); the background gets updated by signaling `SIGIO`

read man page doc/fbterm.1 for usage help.

Expand Down
2 changes: 1 addition & 1 deletion src/screen_render.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void Screen::endFillDraw()
void Screen::redrawBg()
{
if (mBackgroundData != MAP_FAILED) {
mempcpy(bgimage_mem, mBackgroundData, mSize);
mempcpy(bgimage_mem, mBackgroundData, mSize);
}
}

Expand Down

0 comments on commit 9708c85

Please sign in to comment.