aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--config/aerc/accounts.conf.agebin1723 -> 2385 bytes
-rw-r--r--config/aerc/aerc.conf4
-rw-r--r--config/aerc/binds.conf6
-rw-r--r--config/aerc/gmail-map1
-rw-r--r--config/mpd/mpd.conf6
-rw-r--r--config/waybar/config.jsonc17
-rw-r--r--config/waybar/style.css45
-rw-r--r--config/weechat/sec.conf.agebin1271 -> 1271 bytes
9 files changed, 67 insertions, 14 deletions
diff --git a/.gitignore b/.gitignore
index 37b8a7f..2fcccfa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,6 @@ config/nvim/oleoboard.saved
config/mpd/database
config/mpd/state
config/mpd/sticker.sql
-config/mpd/music
+config/mpd/ext
config/weechat/sec.conf
config/ncmpcpp/error.log
diff --git a/config/aerc/accounts.conf.age b/config/aerc/accounts.conf.age
index c5c5e47..271f41a 100644
--- a/config/aerc/accounts.conf.age
+++ b/config/aerc/accounts.conf.age
Binary files differ
diff --git a/config/aerc/aerc.conf b/config/aerc/aerc.conf
index dec4379..c1dcc25 100644
--- a/config/aerc/aerc.conf
+++ b/config/aerc/aerc.conf
@@ -494,7 +494,7 @@ text/plain=wrap -r -w 72 | colorize
text/calendar=calendar
message/delivery-status=colorize
message/rfc822=colorize
-text/html=pandoc -f html -t plain | colorize
+text/html=pandoc -f html -t markdown --wrap=none| colorize
#text/html=html | colorize
text/*=bat -fP --file-name="$AERC_FILENAME"
#application/x-sh=bat -fP -l sh
@@ -535,7 +535,7 @@ text/*=bat -fP --file-name="$AERC_FILENAME"
#
# Executed when a new email arrives in the selected folder
-#mail-received=notify-send "New mail from $AERC_FROM_NAME" "$AERC_SUBJECT"
+mail-received=notify-send " $AERC_SUBJECT" "$AERC_FROM_NAME"
#
# Executed when aerc starts
diff --git a/config/aerc/binds.conf b/config/aerc/binds.conf
index f3f4cd9..2ae36f4 100644
--- a/config/aerc/binds.conf
+++ b/config/aerc/binds.conf
@@ -38,7 +38,7 @@ T = :toggle-threads<Enter>
<Enter> = :view<Enter>
d = :prompt 'Really delete this message?' 'delete-message'<Enter>
D = :delete<Enter>
-A = :read <Enter> :archive flat<Enter>
+e = :read <Enter> :archive flat<Enter>
C = :compose<Enter>
@@ -68,7 +68,7 @@ O = :open<Enter>
S = :save<space>
| = :pipe<space>
D = :delete<Enter>
-A = :read <Enter> :archive flat<Enter>
+e = :read <Enter> :archive flat<Enter>
<C-l> = :open-link <space>
@@ -123,7 +123,7 @@ n = :abort<Enter>
v = :preview<Enter>
p = :postpone<Enter>
q = :choose -o d discard abort -o p postpone postpone<Enter>
-e = :edit<Enter>
+c = :edit<Enter>
a = :attach<space>
d = :detach<space>
diff --git a/config/aerc/gmail-map b/config/aerc/gmail-map
new file mode 100644
index 0000000..cfb6b25
--- /dev/null
+++ b/config/aerc/gmail-map
@@ -0,0 +1 @@
+* = [Gmail]/*
diff --git a/config/mpd/mpd.conf b/config/mpd/mpd.conf
index abe0b2b..3aa6ca6 100644
--- a/config/mpd/mpd.conf
+++ b/config/mpd/mpd.conf
@@ -2,9 +2,9 @@ bind_to_address "127.0.0.1"
bind_to_address "::1"
bind_to_address "/run/mpd/socket"
-db_file "~/.config/mpd/database"
+db_file "~/.config/mpd/ext/mpd.database"
state_file "~/.config/mpd/state"
-playlist_directory "~/.config/mpd/playlists"
+playlist_directory "~/.config/mpd/ext/playlists"
sticker_file "~/.config/mpd/sticker.sql"
audio_output {
@@ -29,7 +29,7 @@ auto_update "no"
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
-music_directory "~/.config/mpd/music"
+music_directory "~/.config/mpd/ext/Music"
zeroconf_enabled "yes"
zeroconf_name "MPD @ %h"
diff --git a/config/waybar/config.jsonc b/config/waybar/config.jsonc
index 8ae7c95..52b233f 100644
--- a/config/waybar/config.jsonc
+++ b/config/waybar/config.jsonc
@@ -12,10 +12,11 @@
"idle_inhibitor",
"custom/mullvad",
"custom/tailscale",
- "network",
"pulseaudio",
+ "custom/builds",
"power-profiles-daemon",
"battery",
+ "network",
"clock",
"tray",
"custom/power"
@@ -23,8 +24,8 @@
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
- "activated": "SLP",
- "deactivated": "CAF"
+ "activated": "CAF",
+ "deactivated": "ZZZ"
}
},
"clock": {
@@ -50,7 +51,15 @@
"format-linked": "{ifname} (No IP) <span font-family='Font Awesome 6 Free'></span>",
"format-disconnected": "Disconnected <span font-family='Font Awesome 6 Free'>⚠</span>",
"format-alt": "{ifname}: {ipaddr}/{cidr}",
- "format-icons": ["․", ":", "⸪", "⁛"]
+ "format-icons": ["․", ":", "⸪", "⁛"],
+ "on-click-right": "kitty nmtui"
+ },
+ "custom/builds": {
+ "format": "{text}",
+ "exec": "~/AppConfig/waybar/sourcehut.sh",
+ "return-type": "json",
+ "on-click": "~/AppConfig/waybar/sourcehut.sh --popup",
+ "interval": 10,
},
"power-profiles-daemon": {
"format": "{icon}",
diff --git a/config/waybar/style.css b/config/waybar/style.css
index deee975..90489da 100644
--- a/config/waybar/style.css
+++ b/config/waybar/style.css
@@ -60,6 +60,7 @@ button:hover {
#pulseaudio,
#wireplumber,
#custom-media,
+#custom-builds,
#tray,
#mode,
#idle_inhibitor,
@@ -103,9 +104,13 @@ button:hover {
}
#idle_inhibitor {
- background: #4F8FE6;
+ color: #0F261F;
+ background: #DAE6E3;
}
+#idle_inhibitor.activated {
+ background: #4F8FE6;
+}
#mpd {
color: #0F261F;
background-color: #FAED8F;
@@ -131,3 +136,41 @@ button:hover {
color: #0F261F;
background-color: #B5D1CC;
}
+
+menu {
+ background-color: rgba(15, 38, 31, 0.95);
+ border: none;
+ border-radius: 0;
+ transition-property: background-color;
+ transition-duration: .1s;
+ padding: 0;
+}
+
+menuitem {
+ color: #DAE6E3;
+ border: none;
+ border-radius: 0;
+ padding: 5px 0;
+}
+menuitem:hover {
+ background: #4F8FE6;
+}
+menu separator {
+ background-color: #90A6A2;
+ margin: 5px 0;
+}
+
+#custom-builds {
+ background-color: #90A6A2;
+ color: #0F261F;
+}
+#custom-builds.has_success {
+ background-color: #23C17C;
+}
+#custom-builds.has_running {
+ background-color: #FAED8F;
+}
+#custom-builds.has_failures {
+ background-color: #FA2B00;
+ color: #DAE6E3;
+}
diff --git a/config/weechat/sec.conf.age b/config/weechat/sec.conf.age
index 2e5590b..ebe94f4 100644
--- a/config/weechat/sec.conf.age
+++ b/config/weechat/sec.conf.age
Binary files differ