From 072c4f97241f0302b82bf6d8b14540ad62ef5e66 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 9 Jan 2022 12:04:14 -0500 Subject: [PATCH 1/5] [gtk] Add gtk themes --- gtk/.config/gtk-3.0/bookmarks | 5 +++++ gtk/.config/gtk-3.0/settings.ini | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 gtk/.config/gtk-3.0/bookmarks create mode 100644 gtk/.config/gtk-3.0/settings.ini diff --git a/gtk/.config/gtk-3.0/bookmarks b/gtk/.config/gtk-3.0/bookmarks new file mode 100644 index 0000000..6af7db5 --- /dev/null +++ b/gtk/.config/gtk-3.0/bookmarks @@ -0,0 +1,5 @@ +file:///home/powellc/Documents +file:///home/powellc/Music +file:///home/powellc/Pictures +file:///home/powellc/Videos +file:///home/powellc/Downloads diff --git a/gtk/.config/gtk-3.0/settings.ini b/gtk/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..2291168 --- /dev/null +++ b/gtk/.config/gtk-3.0/settings.ini @@ -0,0 +1,16 @@ +[Settings] +gtk-theme-name=Yaru-dark +gtk-icon-theme-name=Yaru +gtk-font-name=Ubuntu Condensed, 11 +gtk-cursor-theme-name=DMZ-Black +gtk-cursor-theme-size=0 +gtk-toolbar-style=GTK_TOOLBAR_ICONS +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=0 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull +gtk-xft-rgba=rgb From 2acf7ac55adc82e95e5485d5c88670564e90a2e8 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 9 Jan 2022 12:04:37 -0500 Subject: [PATCH 2/5] [i3] Picom should not always start --- i3/.config/i3/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3/.config/i3/config b/i3/.config/i3/config index c9f119b..9c2ba40 100644 --- a/i3/.config/i3/config +++ b/i3/.config/i3/config @@ -328,7 +328,7 @@ exec --no-startup-id nm-applet exec --no-startup-id copyq # RELOAD -exec_always --no-startup-id picom --config ~/.config/compton/compton.conf +exec --no-startup-id picom --config ~/.config/compton/compton.conf exec --no-startup-id dunst exec --no-startup-id syncthing -no-qute exec xrdb --merge ~/.Xresoureces From f9f50183244b991113df446ed2febeb9ec40f9d5 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 9 Jan 2022 12:05:01 -0500 Subject: [PATCH 3/5] [emacs] Update agenda files for 2022 --- emacs/.config/doom/config.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/.config/doom/config.org b/emacs/.config/doom/config.org index 5794400..12b8894 100644 --- a/emacs/.config/doom/config.org +++ b/emacs/.config/doom/config.org @@ -210,7 +210,7 @@ a serif font when I’m writing a lot of words. (after! org (run-with-idle-timer 300 t (lambda () ((save-window-excursion org-agenda) nil "a")) ) (setq org-directory (expand-file-name "~/var/org/") - org-agenda-files (file-expand-wildcards "~/var/org/2021-*") + org-agenda-files (file-expand-wildcards "~/var/org/2022-*") org-pretty-entities t org-agenda-dim-blocked-tasks nil org-log-done 'time From 772364a2a7657c0c1a7bf6a9ce6a2585fda35450 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 9 Jan 2022 12:05:26 -0500 Subject: [PATCH 4/5] [bin] Update fade script steps --- bin/.bin/fade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/.bin/fade b/bin/.bin/fade index a7a5d72..2475754 100755 --- a/bin/.bin/fade +++ b/bin/.bin/fade @@ -1,12 +1,12 @@ #!/bin/sh -count=200 +count=100 for i in $(seq $count); do case $1 in 'up') - brightnessctl s +4 + brightnessctl s +5 ;; 'down') - brightnessctl s 4- + brightnessctl s 5- ;; esac done From 08bf791c51637b201a6e6c3b58103e309a87dd05 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 9 Jan 2022 12:05:48 -0500 Subject: [PATCH 5/5] [fish] Add asdf shim --- fish/.config/fish/config.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index be5cd8a..f862265 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -1,4 +1,5 @@ if status is-interactive + source ~/.asdf/asdf.fish set -gx PATH ~/.asdf/installs/rust/latest/bin $PATH set -gx PATH ~/.cargo/bin $PATH set -gx PATH ~/.bin $PATH