Add thefuck and comment out songnotification for now
This commit is contained in:
parent
331e41febd
commit
329c5adb2d
@ -9,7 +9,8 @@
|
|||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(package-selected-packages '(magit counsel doom-modeline doom-themes use-package))
|
'(package-selected-packages
|
||||||
|
'(kotlin-mode magit counsel doom-modeline doom-themes use-package))
|
||||||
'(tab-width 2))
|
'(tab-width 2))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
|
@ -260,3 +260,8 @@ After installing the ~rust-analyzer~ program, the following can be used:
|
|||||||
(enable-minor-mode
|
(enable-minor-mode
|
||||||
'("\\.tsx?\\'" . prettier-js-mode))))
|
'("\\.tsx?\\'" . prettier-js-mode))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** Kotlin
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package kotlin-mode
|
||||||
|
:ensure t)
|
||||||
|
#+END_SRC
|
||||||
|
2
.zshrc
2
.zshrc
@ -50,3 +50,5 @@ HISTFILE=~/.zsh_history
|
|||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
SAVEHIST=10000
|
SAVEHIST=10000
|
||||||
setopt appendhistory
|
setopt appendhistory
|
||||||
|
|
||||||
|
eval $(thefuck --alias)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
song=$(playerctl metadata --format "{{ title }}\n{{ artist }}\n{{ album }}")
|
song=$(playerctl metadata --format "{{ title }}\n{{ artist }}\n{{ album }}")
|
||||||
notify-send "Now Playing" "$song" #--icon=~/.config/spotifyd/penguin.jpg
|
#notify-send "Now Playing" "$song" #--icon=~/.config/spotifyd/penguin.jpg
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user