commit e9ab7cbd89392ed9b3d185730c4a411353648182
parent 1156af84b5258f696f408711097cb7e5d25372a7
Author: Jake Koroman <jakekoroman@gmail.com>
Date: Wed, 27 Mar 2024 20:01:12 -0400
fixing another fuckup. i hate git
Diffstat:
4 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/.config/newsboat/urls b/.config/newsboat/urls
@@ -18,7 +18,9 @@ https://lichess.org/blog.atom "chess"
https://www.gentoo.org/feeds/news.xml "~Gentoo News" "gentoo" "news"
https://archlinux.org/feeds/news/ "~Arch News" "arch" "news"
https://artixlinux.org/feed.php "~Artix News" "arch" "news"
+https://suckless.org/atom.xml "suckless"
---Misc---
https://based.cooking/index.xml "Recipes" "food"
https://rss-bridge.org/bridge01/?action=display&bridge=YouTubeCommunityTabBridge&context=By+channel+ID&channel=UCLtREJY21xRfCuEKvdki1Kw&format=Atom "~H3 Podcast Community tab"
+https://rss-bridge.org/bridge01/?action=display&bridge=RedditBridge&context=single&r=h3h3productions&f=&score=&d=hot&search=&frontend=https%3A%2F%2Fold.reddit.com&format=Atom "~r/h3h3productions"
diff --git a/.config/sway/config b/.config/sway/config
@@ -181,9 +181,9 @@ exec dbus-update-activation-environment WAYLAND_DISPLAY
bindsym $mod+a focus parent
for_window [class="steam" title="Friends List"] floating enable
- for_window [class="xfreerdp" title="FreeRDP: mhexch13"] floating enable
- for_window [class="xfreerdp" title="FreeRDP: mhshare"] floating enable
- for_window [class="xfreerdp" title="FreeRDP: mh-as2new"] floating enable
+ for_window [instance="xfreerdp" title="FreeRDP: mhexch13"] floating enable
+ for_window [instance="xfreerdp" title="FreeRDP: mhshare"] floating enable
+ for_window [instance="xfreerdp" title="FreeRDP: mh-as2new"] floating enable
#
# Scratchpad:
#
diff --git a/device-specific/laptop/emacs.el b/device-specific/laptop/emacs.el
@@ -5,5 +5,5 @@
;; (toggle-frame-maximized)
(set-default 'truncate-lines t)
;; (list-colors-display) for a color picker
-(load-theme 'gruvbox t)
+(load-theme 'gruber-darker t)
(transparency 100)
diff --git a/scripts/audio_loopback b/scripts/audio_loopback
@@ -9,7 +9,7 @@ if test ! -e $tmpfile; then
echo "started loopback"
exit
else
- pactl unload-module $(cat $tmpfile)
+ pactl unload-module < $tmpfile
rm $tmpfile
echo "stopped loopback"
fi