diff options
| -rw-r--r-- | .bash_profile | 6 | ||||
| -rw-r--r-- | emacs/init.el | 3 | ||||
| -rw-r--r-- | sxhkd/sxhkdrc | 11 |
3 files changed, 16 insertions, 4 deletions
diff --git a/.bash_profile b/.bash_profile index d89387a..e72eec5 100644 --- a/.bash_profile +++ b/.bash_profile @@ -3,9 +3,6 @@ # Set up the home environment profile. if [ -f ~/.profile ]; then source ~/.profile; fi -# Honor per-interactive-shell startup file -if [ -f ~/.bashrc ]; then source ~/.bashrc; fi - export SUDO="sudo" export TERMINAL="st" export BROWSER="firefox" @@ -29,3 +26,6 @@ export MBSYNCRC="$XDG_CONFIG_HOME/mbsync/config" export MANPATH="$MANPATH:$XDG_DATA_HOME/man" export _JAVA_AWT_WM_NONREPARENTING="1" export PATH="$CARGO_HOME/bin:$HOME/.local/bin:$HOME/scripts:$PATH" + +# Honor per-interactive-shell startup file +if [ -f ~/.bashrc ]; then source ~/.bashrc; fi diff --git a/emacs/init.el b/emacs/init.el index 6609fc2..ad35916 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -111,6 +111,9 @@ (use-package ef-themes :ensure t) +(use-package acme-theme + :ensure t) + (use-package minions :ensure t diff --git a/sxhkd/sxhkdrc b/sxhkd/sxhkdrc index 870db32..bf0f909 100644 --- a/sxhkd/sxhkdrc +++ b/sxhkd/sxhkdrc @@ -38,4 +38,13 @@ XF86MonBrightnessUp brightnessctl set 5%+ XF86MonBrightnessDown - brightnessctl set 5%-
\ No newline at end of file + brightnessctl set 5%- + +XF86AudioRaiseVolume + wpctl set-volume @DEFAULT_SINK@ 2%+ + +XF86AudioLowerVolume + wpctl set-volume @DEFAULT_SINK@ 2%- + +XF86AudioMute + wpctl set-mute @DEFAULT_SINK@ toggle |
