updates to guix
This commit is contained in:
parent
30827efb99
commit
e737704d61
6 changed files with 348 additions and 277 deletions
|
@ -228,4 +228,5 @@ exec-once = dbus-update-activation-environment --all
|
|||
exec-once = jellyfin-mpv-shim
|
||||
exec-once = hyprctl setcursor phinger-cursors-light 24
|
||||
exec-once = swaybg -m fill -i ~/pics/wallpapers/adventure.jpg
|
||||
exec-once = waybar
|
||||
exec-once = swayidle -w timeout 300 'swaylock -S --effect-blur 20x3 --fade-in 1 --effect-vignette 0.5:1 --grace 60' timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -S --effect-blur 20x3 --effect-vignette 0.5:1'
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
IMAPAccount gmail
|
||||
Host imap.gmail.com
|
||||
User ccochrun21@gmail.com
|
||||
PassCmd rbw get gmail
|
||||
PassCmd "rbw get gmail"
|
||||
AuthMechs LOGIN
|
||||
SSLType IMAPS
|
||||
SSLVersions SSLv3
|
||||
|
@ -13,21 +13,21 @@ SSLVersions SSLv3
|
|||
IMAPAccount office
|
||||
Host outlook.office365.com
|
||||
User chris@tfcconnection.org
|
||||
PassCmd rbw get 'Office 365'
|
||||
PassCmd "/home/chris/bin/mailpass"
|
||||
AuthMechs LOGIN
|
||||
SSLType IMAPS
|
||||
|
||||
IMAPAccount outlook
|
||||
Host outlook.office365.com
|
||||
User chris.cochrun@outlook.com
|
||||
PassCmd rbw get outlook
|
||||
PassCmd "rbw get outlook"
|
||||
AuthMechs LOGIN
|
||||
SSLType IMAPS
|
||||
|
||||
IMAPAccount cochrun
|
||||
Host mail.cochrun.xyz
|
||||
User chris@cochrun.xyz
|
||||
PassCmd rbw get 'Office 365'
|
||||
PassCmd "rbw get 'Office 365'"
|
||||
AuthMechs LOGIN
|
||||
SSLType IMAPS
|
||||
# SSLVersions SSLv3
|
||||
|
@ -42,8 +42,8 @@ IMAPStore gmail-remote
|
|||
Account gmail
|
||||
|
||||
MaildirStore gmail-local
|
||||
Path ~/Maildir/gmail/
|
||||
Inbox ~/Maildir/gmail/INBOX
|
||||
Path ~/mail/gmail/
|
||||
Inbox ~/mail/gmail/INBOX
|
||||
|
||||
IMAPStore office-remote
|
||||
Account office
|
||||
|
@ -51,8 +51,8 @@ Account office
|
|||
# LOCAL STORAGE (CREATE DIRECTORIES with mkdir -p Maildir/gmail)
|
||||
|
||||
MaildirStore office-local
|
||||
Path ~/Maildir/office/
|
||||
Inbox ~/Maildir/office/INBOX
|
||||
Path ~/mail/office/
|
||||
Inbox ~/mail/office/INBOX
|
||||
Subfolders Verbatim
|
||||
|
||||
|
||||
|
@ -60,16 +60,16 @@ IMAPStore outlook-remote
|
|||
Account outlook
|
||||
|
||||
MaildirStore outlook-local
|
||||
Path ~/Maildir/outlook/
|
||||
Inbox ~/Maildir/outlook/INBOX
|
||||
Path ~/mail/outlook/
|
||||
Inbox ~/mail/outlook/INBOX
|
||||
Subfolders Verbatim
|
||||
|
||||
IMAPStore cochrun-remote
|
||||
Account cochrun
|
||||
|
||||
MaildirStore cochrun-local
|
||||
Path ~/Maildir/cochrun/
|
||||
Inbox ~/Maildir/cochrun/INBOX
|
||||
Path ~/mail/cochrun/
|
||||
Inbox ~/mail/cochrun/INBOX
|
||||
Subfolders Verbatim
|
||||
|
||||
# CONNECTIONS SPECIFY LINKS BETWEEN REMOTE AND LOCAL FOLDERS
|
|
@ -5,9 +5,9 @@
|
|||
"height": 35, // Waybar height (to be removed for auto height)
|
||||
"width": 1400, // Waybar width
|
||||
// Choose the order of the modules "custom/wintitle",
|
||||
"modules-left": ["wlr/workspaces", "hyprland/window"],
|
||||
"modules-left": ["hyprland/workspaces", "hyprland/window"],
|
||||
"modules-center": ["clock"],
|
||||
"modules-right": ["pulseaudio", "backlight", "temperature", "memory", "cpu", "battery", "tray"],
|
||||
"modules-right": ["pulseaudio", "backlight", "memory", "cpu", "battery", "tray"],
|
||||
"margin-top": -5,
|
||||
"margin-bottom": 8,
|
||||
"margin-left": 6,
|
||||
|
@ -16,10 +16,20 @@
|
|||
"hyprland/window": {
|
||||
"format": " <span style='italic'>{}</span>"
|
||||
},
|
||||
"wlr/workspaces": {
|
||||
"hyprland/workspaces": {
|
||||
"format": "{icon}",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e-1"
|
||||
"format-icons": {
|
||||
"1": "",
|
||||
"2": "",
|
||||
"3": "",
|
||||
"4": "",
|
||||
"5": "",
|
||||
"9": "",
|
||||
"active": "",
|
||||
"default": ""
|
||||
},
|
||||
// "on-scroll-up": "hyprctl dispatch workspace e+1",
|
||||
// "on-scroll-down": "hyprctl dispatch workspace e-1"
|
||||
},
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\"> {}</span>"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue