Foogodの答えはうまくいきませんでしたが、ソリューションの半分を提供することで(つまり、fbi
TTY画面に画像を表示しながら、フレームバッファーデータを読み取ることで)正しい方向に導きました。したがって、私は彼の答えに賞金を授与しました。
Bellowは、fbterm
単一のコマンドライン引数としてイメージへの部分パスを使用して簡単に起動できるスクリプトです
使用法
スクリプトは、以下にリストされているディレクトリに保存する必要があります $PATH
変数にます。できれば、個人用$HOME/bin
フォルダにある必要があります。PATHにディレクトリを追加する方法を参照してください。あなたの個人を追加する方法を説明上bin
に$PATH
、しかしと呼ばれるディレクトリ作成しbin
、あなたのホームディレクトリにするに追加するのに十分であるPATH
再ログインに。
スクリプトには実行可能権限も必要です。で設定できますchmod +x /path/to/script.sh
。
最後に、それはで走っている必要がありsudo
、読み込みおよび書き込みを行うルートアクセスを許可します/dev/fb0
。
スクリプトソース
でも利用可能 Githubリポジトリでます。
#!/bin/bash
# Author : Serg Kolo
# Date: Dec 5, 2015
# Description: Script to render image and set it as background
# in conjunction with fbterm
# Depends: fbterm,fbi, awk
# Written for: /ubuntu//q/701874/295286
function printUsage
{
echo "<<< Script to set background image in TTY console"
echo "<<< Written by Serg Kolo, Dec 5 , 2015"
echo "<<< Usage: scriptName.sh /path/to/image"
echo "<<< Must be ran with root privileges, in TTY only"
echo "exiting"
}
# check if we're root, if there's at least one ARG, and it is a TTY
if [ "$(whoami)" != "root" ] || [ "$#" -eq 0 ] || [ "$( tty | awk '{gsub(/[[:digit:]]/,""); gsub(/\/dev\//,"");print}' )" != "tty" ] ;then
printUsage
exit 1
fi
# read the full path of the image
IMAGE="$( readlink -f "$@" )"
# Launch fbi with whatever image was supplied as command line arg
# then take out whatever is the data in framebuffer;
# Store that data to /tmp folder
( sleep 1; cat /dev/fb0 > /tmp/BACKGROUND.fbimg ; sleep 1; pkill fbi ) & fbi -t 2 -1 --noverbose -a "$IMAGE"
# This portion is really optional; you can comment it out
# if you choose so
echo "LAUNCH FBTERM ?(y/n)"
read ANSWER
if [ "$ANSWER" != "y" ] ; then
echo exiting
exit 1
fi
# The man page states that fbterm takes screenshot of
# what is currently in framebuffer and sets it as background
# if FBTERM_BACKGROUND_IMAGE is set to 1
# Therefore the trick is to send the framebuffer data captured
# in the last step (which will display the image on screen)
# and then launch fbterm. Note, that I send output from the command
# send to background in order to avoid the extra text displayed on
# screen. That way we have clear image in framebuffer, without
# the shell text, when we launch fbterm
export FBTERM_BACKGROUND_IMAGE=1
clear
( cat /tmp/BACKGROUND.fbimg > /dev/fb0 &) > /dev/null; sleep 0.25; fbterm
追加情報
ユーザーが必ずしも使用する必要はないことがわかりますsudo
。グループに/dev/fb0
属しているvideo
ため、ユーザーは、そのグループに自分自身を追加使用して
sudo usermod -a -G video $USER
したがって、上記のスクリプトのルートのチェックは廃止され、具体的には[ "$(whoami)" != "root" ] ||
一部になります。