diff options
-rw-r--r-- | .bashrc | 2 | ||||
-rw-r--r-- | .config/rofi/config | 3 | ||||
-rw-r--r-- | .emacs.d/init.el | 10 | ||||
-rw-r--r-- | .emacs.d/lisp/bandali-exwm.el | 17 | ||||
-rw-r--r-- | .gnupg/gpg-agent.conf | 6 | ||||
-rw-r--r-- | .xinitrc | 4 |
6 files changed, 22 insertions, 20 deletions
@@ -85,7 +85,7 @@ alias se="SUDO_EDITOR=\"emacsclient\" sudo -e" alias s="startx" aur() { - cd ~/usr/builds + cd ~/s [ -d ${1} ] || git clone https://aur.archlinux.org/${1}.git cd ${1} } diff --git a/.config/rofi/config b/.config/rofi/config index a2b343d..b33d1e6 100644 --- a/.config/rofi/config +++ b/.config/rofi/config @@ -11,4 +11,5 @@ rofi.width: 600 rofi.monitor: -1 !rofi.lines: 10 -rofi.theme: ~/.guix-profile/share/rofi/themes/gruvbox-light-hard.rasi +!rofi.theme: ~/.guix-profile/share/rofi/themes/gruvbox-light-hard.rasi +rofi.theme: /usr/share/rofi/themes/gruvbox-light-hard.rasi diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 435cf97..0dccfff 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -977,16 +977,6 @@ Make N (default: 1) copies of the current line or region." (other-window 1))) (global-set-key (kbd "C-c w q") #'quit-window) -(run-with-idle-timer 0.6 nil #'require 'windmove) -(global-set-key (kbd "C-c w h") #'windmove-left) -(global-set-key (kbd "C-c w j") #'windmove-down) -(global-set-key (kbd "C-c w k") #'windmove-up) -(global-set-key (kbd "C-c w l") #'windmove-right) -(global-set-key (kbd "C-c w H") #'windmove-swap-states-left) -(global-set-key (kbd "C-c w J") #'windmove-swap-states-down) -(global-set-key (kbd "C-c w K") #'windmove-swap-states-up) -(global-set-key (kbd "C-c w L") #'windmove-swap-states-right) - ;; pass ;; (global-set-key (kbd "C-c a p") #'pass) ;; (add-hook 'pass-mode-hook #'View-exit) diff --git a/.emacs.d/lisp/bandali-exwm.el b/.emacs.d/lisp/bandali-exwm.el index 4395d61..ff89112 100644 --- a/.emacs.d/lisp/bandali-exwm.el +++ b/.emacs.d/lisp/bandali-exwm.el @@ -125,20 +125,29 @@ around if needed." (interactive) (start-process-shell-command "rofi-light" nil "rofi-light"))) - ([XF86AudioMute] . + ([XF86AudioMute] . ; borken on my X200 :-( (lambda () (interactive) - (start-process "" nil "amixer" "set" "'Master',0" "toggle"))) + (start-process "" nil "pamixer" "--toggle-mute"))) + ([XF86Launch1] . + (lambda () + (interactive) + (start-process "" nil "pamixer" "--toggle-mute"))) + ([\s-XF86Launch1] . ; toggle mic mute + (lambda () + (interactive) + (start-process + "" nil "pamixer" "--default-source" "--toggle-mute"))) ([XF86AudioLowerVolume] . (lambda () (interactive) (start-process - "" nil "amixer" "set" "'Master',0" "5%-"))) + "" nil "pamixer" "--allow-boost" "--decrease" "5"))) ([XF86AudioRaiseVolume] . (lambda () (interactive) (start-process - "" nil "amixer" "set" "'Master',0" "5%+"))) + "" nil "pamixer" "--allow-boost" "--increase" "5"))) ([XF86AudioPlay] . (lambda () (interactive) diff --git a/.gnupg/gpg-agent.conf b/.gnupg/gpg-agent.conf index ba418db..5263551 100644 --- a/.gnupg/gpg-agent.conf +++ b/.gnupg/gpg-agent.conf @@ -4,6 +4,6 @@ max-cache-ttl 86400 default-cache-ttl-ssh 43200 max-cache-ttl-ssh 86400 -pinentry-program /home/bandali/.guix-profile/bin/pinentry-emacs -allow-emacs-pinentry -allow-loopback-pinentry +# pinentry-program /home/bandali/.guix-profile/bin/pinentry-emacs +# allow-emacs-pinentry +# allow-loopback-pinentry @@ -15,4 +15,6 @@ xsetroot -cursor_name left_ptr xset r rate 200 45 xset b off -exec emacs -ib 0 +[ -x "$(command -v pasystray)" ] && pasystray -a & +[ -x "$(command -v nm-applet)" ] && nm-applet & +EDITOR=nano exec emacs -ib 0 |