some awesome changes mostly
This commit is contained in:
parent
8520db7ac6
commit
5e2448e1fb
|
@ -73,7 +73,7 @@
|
||||||
(if (= "syl\n" stdout)
|
(if (= "syl\n" stdout)
|
||||||
(global laptop true)
|
(global laptop true)
|
||||||
(global laptop false))))
|
(global laptop false))))
|
||||||
(local laptop true)
|
(local laptop false)
|
||||||
|
|
||||||
;; Table of layouts to cover with awful.layout.inc, order matters.
|
;; Table of layouts to cover with awful.layout.inc, order matters.
|
||||||
(set awful.layout.layouts [
|
(set awful.layout.layouts [
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
(local anim-y (awestore.tweened 1100 { :duration 200 :easing awestore.easing.cubic_in_out }))
|
(local anim-y (awestore.tweened 1100 { :duration 200 :easing awestore.easing.cubic_in_out }))
|
||||||
(local anim-x (awestore.tweened 1920 { :duration 200 :easing awestore.easing.cubic_in_out }))
|
(local anim-x (awestore.tweened 1920 { :duration 200 :easing awestore.easing.cubic_in_out }))
|
||||||
|
|
||||||
(local agenda-scratch (bling.module.scratchpad:new {
|
(local agenda-scratch (bling.module.scratchpad {
|
||||||
:command "emacsclient -e '(chris/org-agenda)'"
|
:command "emacsclient -e '(chris/org-agenda-awesome)'"
|
||||||
:rule [:name "*Org Agenda(a)*"]
|
:rule [:name "*Org Agenda(a)*"]
|
||||||
:sticky true
|
:sticky true
|
||||||
:autoclose true
|
:autoclose true
|
||||||
|
@ -150,8 +150,7 @@
|
||||||
(awful.key [ modkey ] "x" (fn [] (awful.spawn "emacsclient -c -e '(org-capture)'"
|
(awful.key [ modkey ] "x" (fn [] (awful.spawn "emacsclient -c -e '(org-capture)'"
|
||||||
{:floating true :placement awful.placement.centered :class "org-agenda" :instance "org-agenda"}))
|
{:floating true :placement awful.placement.centered :class "org-agenda" :instance "org-agenda"}))
|
||||||
{:description "launch scratchpad in new emacs frame" :group "apps" })
|
{:description "launch scratchpad in new emacs frame" :group "apps" })
|
||||||
(awful.key [ modkey ] "'" (fn [] (awful.spawn "emacsclient -e '(chris/org-agenda)'"
|
(awful.key [ modkey ] "'" (fn [] (awful.spawn "emacslient -e '(chris/org-agenda)'"))
|
||||||
{:floating true :placement awful.placement.centered :class "org-agenda" :instance "org-agenda"}))
|
|
||||||
{:description "launch org-agenda in new emacs frame" :group "apps" })
|
{:description "launch org-agenda in new emacs frame" :group "apps" })
|
||||||
(awful.key [ modkey alt ] "m" (fn [] (awful.spawn "emacsclient -c -e '(org-roam-capture)'"))
|
(awful.key [ modkey alt ] "m" (fn [] (awful.spawn "emacsclient -c -e '(org-roam-capture)'"))
|
||||||
{:description "launch org-roam-capture in new emacs frame" :group "apps" })
|
{:description "launch org-roam-capture in new emacs frame" :group "apps" })
|
||||||
|
|
|
@ -174,11 +174,13 @@
|
||||||
"dolphin"
|
"dolphin"
|
||||||
"feh"
|
"feh"
|
||||||
"Arandr"
|
"Arandr"
|
||||||
|
"gcr-prompter"
|
||||||
]
|
]
|
||||||
:name [
|
:name [
|
||||||
"Event Tester"
|
"Event Tester"
|
||||||
"remove images?"
|
"remove images?"
|
||||||
"Blender Preferences"
|
"Blender Preferences"
|
||||||
|
"Unlock Login Keyring"
|
||||||
]
|
]
|
||||||
:role [
|
:role [
|
||||||
"pop-up"
|
"pop-up"
|
||||||
|
|
|
@ -10,4 +10,4 @@ configuration {
|
||||||
run-command: "fish -c {cmd}";
|
run-command: "fish -c {cmd}";
|
||||||
run-list-command: "fish -c functions";
|
run-list-command: "fish -c functions";
|
||||||
}
|
}
|
||||||
@import "/home/chris/.dotfiles/rofi/launchers-git/laptop.rasi"
|
@import "/home/chris/.dotfiles/rofi/launchers-git/desktop.rasi"
|
||||||
|
|
|
@ -28,7 +28,7 @@ configuration {
|
||||||
foreground-selected: #ffffff;
|
foreground-selected: #ffffff;
|
||||||
urgent: #E91E63;
|
urgent: #E91E63;
|
||||||
urgent-selected: #E91E63;
|
urgent-selected: #E91E63;
|
||||||
transparent: #282a36CC;
|
transparent: #00000000;
|
||||||
base00: #282a36;
|
base00: #282a36;
|
||||||
base01: #34353e;
|
base01: #34353e;
|
||||||
base02: #43454f;
|
base02: #43454f;
|
||||||
|
@ -45,7 +45,7 @@ configuration {
|
||||||
base0D: #57c7ff;
|
base0D: #57c7ff;
|
||||||
base0E: #ff6ac1;
|
base0E: #ff6ac1;
|
||||||
base0F: #b2643c;
|
base0F: #b2643c;
|
||||||
base00t: #282a3655;
|
base00t: #282a3666;
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
window {
|
||||||
|
|
8
systemd/user/mail.service
Normal file
8
systemd/user/mail.service
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[Unit]
|
||||||
|
Description=mbsync automated sync of mail
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStart=/home/chris/scripts/mailsync.sh
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
9
systemd/user/mail.timer
Normal file
9
systemd/user/mail.timer
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[Unit]
|
||||||
|
Description=timer for syncing mail
|
||||||
|
|
||||||
|
[Timer]
|
||||||
|
OnStartupSec=2min
|
||||||
|
OnUnitActiveSec=30min
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=timers.target
|
Loading…
Reference in a new issue