mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-05 04:47:56 +00:00
gtkrc trick for tomb icon
backup properly
This commit is contained in:
parent
b34d379596
commit
fd8df548f4
10
src/tomb
10
src/tomb
@ -164,7 +164,9 @@ ask_password() {
|
||||
|
||||
# pinentry has no custom icon setting
|
||||
# so we need to temporary modify the gtk theme
|
||||
cp ~/.gtkrc-2.0 ~/.gtkrc-2.0.bak
|
||||
if [ -r ~/.gtkrc-2.0 ]; then
|
||||
cp ~/.gtkrc-2.0 ~/.gtkrc-2.0.tomb.bak
|
||||
fi
|
||||
cat <<EOF >> ~/.gtkrc-2.0
|
||||
pixmap_path "/usr/local/share/pixmaps"
|
||||
style "normal" { stock["gtk-dialog-authentication"] = {{"monmort.xpm"}} }
|
||||
@ -179,8 +181,10 @@ GETPIN
|
||||
EOF
|
||||
|
||||
# restore gtk as it was
|
||||
cp ~/.gtkrc-2.0.bak ~/.gtkrc-2.0
|
||||
rm ~/.gtkrc-2.0.bak
|
||||
if [ -r ~/.gtkrc-2.0.tomb.bak ]; then
|
||||
cp ~/.gtkrc-2.0.tomb.bak ~/.gtkrc-2.0
|
||||
rm ~/.gtkrc-2.0.tomb.bak
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user