Disable Okular Cache
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I have a problem with okular
(or it is actually not a problem but irritating).
Because of reasons I sometimes start okular
from command line (zsh
) and after I closed okular
(sometimes after some seconds, not immediately which irritates me) it print something like:
schoenix:~$ okular file.pdf
schoenix:~$ Creating the cache for: "/home/schoenix/file.pdf"
Already in database? true
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
After the adjustment
Current score : 9.14105
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
Interval length is 3
New score : 9.19105
ResourceScoreUpdated: "5ce27654-47a4-4b51-a7fd-f0d865917aff" "okular" "/home/schoenix/file.pdf"
After that it stops and I have to kill it via Ctrl+C, and sometimes it came some seconds later and I already typed a new command and it mixed with this output.
I want either disable the cache (how?) or disable this output.
kde okular
add a comment |Â
up vote
0
down vote
favorite
I have a problem with okular
(or it is actually not a problem but irritating).
Because of reasons I sometimes start okular
from command line (zsh
) and after I closed okular
(sometimes after some seconds, not immediately which irritates me) it print something like:
schoenix:~$ okular file.pdf
schoenix:~$ Creating the cache for: "/home/schoenix/file.pdf"
Already in database? true
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
After the adjustment
Current score : 9.14105
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
Interval length is 3
New score : 9.19105
ResourceScoreUpdated: "5ce27654-47a4-4b51-a7fd-f0d865917aff" "okular" "/home/schoenix/file.pdf"
After that it stops and I have to kill it via Ctrl+C, and sometimes it came some seconds later and I already typed a new command and it mixed with this output.
I want either disable the cache (how?) or disable this output.
kde okular
Did my answer help?
â Sparhawk
Feb 10 at 23:46
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a problem with okular
(or it is actually not a problem but irritating).
Because of reasons I sometimes start okular
from command line (zsh
) and after I closed okular
(sometimes after some seconds, not immediately which irritates me) it print something like:
schoenix:~$ okular file.pdf
schoenix:~$ Creating the cache for: "/home/schoenix/file.pdf"
Already in database? true
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
After the adjustment
Current score : 9.14105
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
Interval length is 3
New score : 9.19105
ResourceScoreUpdated: "5ce27654-47a4-4b51-a7fd-f0d865917aff" "okular" "/home/schoenix/file.pdf"
After that it stops and I have to kill it via Ctrl+C, and sometimes it came some seconds later and I already typed a new command and it mixed with this output.
I want either disable the cache (how?) or disable this output.
kde okular
I have a problem with okular
(or it is actually not a problem but irritating).
Because of reasons I sometimes start okular
from command line (zsh
) and after I closed okular
(sometimes after some seconds, not immediately which irritates me) it print something like:
schoenix:~$ okular file.pdf
schoenix:~$ Creating the cache for: "/home/schoenix/file.pdf"
Already in database? true
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
After the adjustment
Current score : 9.14105
First update : QDateTime(2018-01-22 15:14:58.000 CET Qt::TimeSpec(LocalTime))
Last update : QDateTime(2018-02-07 14:26:43.000 CET Qt::TimeSpec(LocalTime))
Interval length is 3
New score : 9.19105
ResourceScoreUpdated: "5ce27654-47a4-4b51-a7fd-f0d865917aff" "okular" "/home/schoenix/file.pdf"
After that it stops and I have to kill it via Ctrl+C, and sometimes it came some seconds later and I already typed a new command and it mixed with this output.
I want either disable the cache (how?) or disable this output.
kde okular
edited Feb 7 at 14:30
Kusalananda
103k13202318
103k13202318
asked Feb 7 at 13:44
Schoenix
413
413
Did my answer help?
â Sparhawk
Feb 10 at 23:46
add a comment |Â
Did my answer help?
â Sparhawk
Feb 10 at 23:46
Did my answer help?
â Sparhawk
Feb 10 at 23:46
Did my answer help?
â Sparhawk
Feb 10 at 23:46
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
I don't see this with okular on my system (up-to-date Arch Linux, Okular 17.12.1-1). There is no output at all for me. Nevertheless, here are two options.
- Just close the terminal and open another one.
- Suppress all output with
okular file.pdf >/dev/null
If the last is too annoying to type constantly, you could always make an alias. Put the following in ~/.zshrc
:
alias okular='okular >/dev/null'
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I don't see this with okular on my system (up-to-date Arch Linux, Okular 17.12.1-1). There is no output at all for me. Nevertheless, here are two options.
- Just close the terminal and open another one.
- Suppress all output with
okular file.pdf >/dev/null
If the last is too annoying to type constantly, you could always make an alias. Put the following in ~/.zshrc
:
alias okular='okular >/dev/null'
add a comment |Â
up vote
1
down vote
I don't see this with okular on my system (up-to-date Arch Linux, Okular 17.12.1-1). There is no output at all for me. Nevertheless, here are two options.
- Just close the terminal and open another one.
- Suppress all output with
okular file.pdf >/dev/null
If the last is too annoying to type constantly, you could always make an alias. Put the following in ~/.zshrc
:
alias okular='okular >/dev/null'
add a comment |Â
up vote
1
down vote
up vote
1
down vote
I don't see this with okular on my system (up-to-date Arch Linux, Okular 17.12.1-1). There is no output at all for me. Nevertheless, here are two options.
- Just close the terminal and open another one.
- Suppress all output with
okular file.pdf >/dev/null
If the last is too annoying to type constantly, you could always make an alias. Put the following in ~/.zshrc
:
alias okular='okular >/dev/null'
I don't see this with okular on my system (up-to-date Arch Linux, Okular 17.12.1-1). There is no output at all for me. Nevertheless, here are two options.
- Just close the terminal and open another one.
- Suppress all output with
okular file.pdf >/dev/null
If the last is too annoying to type constantly, you could always make an alias. Put the following in ~/.zshrc
:
alias okular='okular >/dev/null'
answered Feb 7 at 22:00
Sparhawk
8,35863487
8,35863487
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f422545%2fdisable-okular-cache%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Did my answer help?
â Sparhawk
Feb 10 at 23:46