1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00
wiki.mbirth.de/know-how/software/_posts/2009-02-15-opera.md

53 lines
1.1 KiB
Markdown
Raw Normal View History

2015-04-16 16:40:25 +01:00
---
created: 2009-02-12 09:17:25 +0100
2022-01-23 17:14:59 +00:00
layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2009/02/12/opera.html
2015-04-16 16:40:25 +01:00
tags:
2022-01-23 17:14:59 +00:00
- know-how
- software
- opera
title: Opera
toc: false
updated: 2009-02-15 23:08:00 +0100
2015-04-16 16:40:25 +01:00
---
2022-01-23 17:14:59 +00:00
2015-04-16 16:40:25 +01:00
**Homepage:** <http://www.opera.com/browser/>
**Development Blog:** <http://my.opera.com/desktopteam/blog/> (incl. Snapshots)
Hide Trayicon
=============
To save space in the systray, you can run opera with the `-notrayicon` parameter.
opera -notrayicon
Disable Mailsystem
==================
To save some memory footprint, you can disable the mail module in Opera.
opera -nomail
Cleanup caches
==============
Opera accumulates several Megabytes on caches, esp. those, who don't cleanup themselves such as the favicon cache. Use
this little script to clean up files which haven't been read in the past 14 days from the 3 dirs: `cache4`, `images`
and `opcache`:
{% highlight bash %}
#!/bin/bash
OPERADIR=~/.opera
OPERACLEANDIRS="cache4 images opcache"
for OPERACDIR in $OPERACLEANDIRS; do
DIR=$OPERADIR/$OPERACDIR
echo $DIR
find $DIR -atime +14 -exec rm {} \;
done
2022-01-23 17:14:59 +00:00
{% endhighlight %}