config:firefox-thunderbird
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
config:firefox-thunderbird [2020/08/29 22:57] – Wulf Rajek | config:firefox-thunderbird [2024/04/16 13:28] (current) – Wulf Rajek | ||
---|---|---|---|
Line 38: | Line 38: | ||
Manually sort folders | Manually sort folders | ||
https:// | https:// | ||
+ | |||
Lightning | Lightning | ||
+ | |||
+ | Edit email subject | ||
+ | https:// | ||
+ | |||
+ | Mail Redirect | ||
+ | https:// | ||
+ | https:// | ||
Provider for Google Calendar | Provider for Google Calendar | ||
https:// | https:// | ||
+ | |||
+ | Open Google Calendar | ||
+ | https:// | ||
LookOut (fix version) | LookOut (fix version) | ||
Line 47: | Line 58: | ||
https:// | https:// | ||
- | Open Google Calendar | ||
- | https:// | ||
- | Mail Redirect | + | ====== Thunderbird Outlook/ |
- | https:// | + | |
- | https://mailredirect.sourceforge.io/ | + | - Via addon manager in TB, install tbsync addon as well as provider for exchange activesync.\\ |
+ | - then go to tools -> addon preferences -> tbsync | ||
+ | - account actions -> add new account -> exchange activesync | ||
+ | - office365 account, give name and add work email | ||
+ | - authenticate as work account with MS password | ||
+ | - select the new account, enable sync, tick boxes of contacts and calendars, set periodic sync to 10 and click synchronize now button. | ||
+ | - calendar entries now show up in lightning | ||
+ | |||
+ | not working as of Feb 2020: | ||
+ | * sending or responding to meeting invitations | ||
+ | * push sync | ||
+ | * Lightning sync buttons do not trigger a sync of EAS calendars | ||
+ | |||
+ | also, this only shows your own calendar, not any others that may have been added to outlook. | ||
====== Thunderbird Label Row Colours ====== | ====== Thunderbird Label Row Colours ====== | ||
- | To have better visibility of labels of mails in the mail list, the style can be changed by closing Thunderbird, | + | To have better visibility of labels of mails in the mail list, the style can be changed by editing or creating a chrome/ |
- | < | + | < |
/* | /* | ||
* Label colors. | * Label colors. | ||
*/ | */ | ||
- | /* Default | + | /* Label1 |
- | treechildren:: | + | treechildren:: |
- | border-bottom: | + | treechildren:: |
- | } | + | treechildren:: |
- | treechildren:: | + | treechildren:: |
- | | + | |
- | } | + | |
- | treechildren:: | + | |
- | | + | |
- | } | + | |
- | treechildren:: | + | |
- | | + | |
- | } | + | |
- | /* Default | + | /* Label2 |
- | treechildren:: | + | treechildren:: |
- | border-bottom: | + | treechildren:: |
- | | + | treechildren:: |
- | treechildren:: | + | treechildren:: |
- | | + | |
- | } | + | |
- | treechildren:: | + | |
- | | + | |
- | } | + | |
- | treechildren:: | + | |
- | | + | |
- | } | + | |
- | /* Default Person Label */ | + | /* Label3 Personal |
- | treechildren:: | + | treechildren:: |
- | | + | treechildren:: |
- | background-color: | + | treechildren:: |
- | treechildren:: | + | treechildren:: |
- | color: #000000 | + | |
- | } | + | /* Label4 To Do */ |
- | treechildren:: | + | treechildren:: |
- | background-color: | + | treechildren:: |
- | } | + | treechildren:: |
- | treechildren:: | + | treechildren:: |
- | | + | |
- | } | + | /* Label5 Later */ |
+ | treechildren:: | ||
+ | treechildren:: | ||
+ | treechildren:: | ||
+ | treechildren:: | ||
- | /* Default Todo Label */ | ||
- | treechildren:: | ||
- | border-bottom: | ||
- | background-color: | ||
- | treechildren:: | ||
- | color: #000000 !important; | ||
- | } | ||
- | treechildren:: | ||
- | background-color: | ||
- | } | ||
- | treechildren:: | ||
- | color: #FFFFFF !important; | ||
- | } | ||
- | /* Default Later Label */ | ||
- | treechildren:: | ||
- | border-bottom: | ||
- | background-color: | ||
- | treechildren:: | ||
- | color: #000000 !important; | ||
- | } | ||
- | treechildren:: | ||
- | background-color: | ||
- | } | ||
- | treechildren:: | ||
- | color: #FFFFFF !important; | ||
- | } | ||
/* | /* | ||
Line 195: | Line 179: | ||
</ | </ | ||
+ | Thunderbird 115+ | ||
- | ===== Chrome ===== | + | <code css ~/ |
+ | /* | ||
+ | * Label colors. | ||
+ | */ | ||
+ | |||
+ | /* Label1 */ | ||
+ | tr[data-properties~=" | ||
+ | tr[data-properties~=" | ||
+ | |||
+ | /* Label2 */ | ||
+ | tr[data-properties~=" | ||
+ | tr[data-properties~=" | ||
+ | |||
+ | /* Label3 */ | ||
+ | tr[data-properties~=" | ||
+ | tr[data-properties~=" | ||
+ | |||
+ | /* Label4 */ | ||
+ | tr[data-properties~=" | ||
+ | tr[data-properties~=" | ||
+ | |||
+ | /* Label5 */ | ||
+ | tr[data-properties~=" | ||
+ | tr[data-properties~=" | ||
+ | |||
+ | </ | ||
+ | |||
+ | ====== Thunderbird window position ====== | ||
+ | |||
+ | Thunderbird does not remember the last window and display position. Using wmctrl and xdotool the window position can be set and it can be snapped to use top half of left-most monitor. Adjust as necessary. The adjustment to thunderbird.sh probably will be overwritten on Thunderbird update. Alternative using wrapper shell script would need to be used if that's the case: | ||
+ | < | ||
+ | #General command line commands for testing: | ||
+ | #Set thunderbird window to top left most screen | ||
+ | wmctrl -i -r $(wmctrl -l | grep Thunderbird | cut -d " " -f1) -e 0, | ||
+ | #Snap thunderbird window to top half of screen (keycombination windows+up) | ||
+ | xdotool windowactivate $(xdotool search --name thunderbird | tail -1) key " | ||
+ | |||
+ | #main Thunderbird.sh script adjustment: | ||
+ | sudo vi / | ||
+ | add just before exec $MOZ_LIBDIR/ | ||
+ | #Set thunderbird window to top left most screen | ||
+ | (sleep 3;wmctrl -i -r $(wmctrl -l | grep Thunderbird | cut -d " " -f1) -e 0, | ||
+ | #Snap thunderbird window to top half of screen (keycombination windows+up) | ||
+ | (sleep 3;xdotool windowactivate $(xdotool search --name thunderbird | tail -1) key " | ||
+ | </ | ||
+ | |||
+ | |||
+ | ====== Systray-X ====== | ||
+ | Systray-X is an app and Thunderbird plugin to add a systray icon and enable minimise to systray for TB. | ||
+ | |||
+ | https:// | ||
+ | |||
+ | Installation: | ||
+ | < | ||
+ | curl -sL -o- https:// | ||
+ | echo "deb [signed-by=/ | ||
+ | sudo apt update | ||
+ | |||
+ | sudo apt install systray-x-minimal | ||
+ | </ | ||
+ | Then restart Thunderbird. | ||
+ | |||
+ | ====== Chrome | ||
Sidebar tabs | Sidebar tabs | ||
https:// | https:// | ||
+ | |||
+ | |||
+ |
config/firefox-thunderbird.1598738236.txt.gz · Last modified: 2023/05/29 11:53 (external edit)