-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4751365
commit fa88681
Showing
109 changed files
with
20,913 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
;; ============================================================================= | ||
|
||
;; emms mode settings =================================================== | ||
;; ___ _ __ ___ _ __ ___ ___ | ||
;; / _ \ '_ ` _ \| '_ ` _ \/ __| | ||
;; | __/ | | | | | | | | | \__ \ | ||
;; \___|_| |_| |_|_| |_| |_|___/ | ||
;; | ||
(require 'emms-setup) | ||
(emms-all) | ||
(require 'emms-i18n) | ||
(require 'emms-history) | ||
|
||
;; (emms-default-players) | ||
|
||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
;; (setq emms-player-list ;; | ||
;; '(emms-player-mplayer ;; | ||
;; emms-player-mpg321 ;; | ||
;; emms-player-ogg123)) ;; | ||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
|
||
;;; use mplayer , that's enough! | ||
(setq emms-player-list '(emms-player-mplayer) emms-player-mplayer-command-name "mplayer" emms-player-mplayer-parameters '("-slave")) | ||
|
||
(setq emms-playlist-buffer-name "*Music*") | ||
|
||
(add-hook 'emms-player-started-hook 'emms-show) | ||
(setq emms-show-format "Now Playing: %s") | ||
(setq emms-source-file-default-directory "H:/Classic/") ;;depend on yourself!! Change your music or movie directory | ||
|
||
;; emms-playlist mode keys map | ||
(global-set-key (kbd "C-c m s") 'emms-stop) | ||
(global-set-key (kbd "C-c m P") 'emms-pause) | ||
(global-set-key (kbd "C-c m n") 'emms-next) | ||
(global-set-key (kbd "C-c m p") 'emms-previous) | ||
(global-set-key (kbd "C-c m f") 'emms-show) | ||
(global-set-key (kbd "C-c m >") 'emms-seek-forward) | ||
(global-set-key (kbd "C-c m <") 'emms-seek-backward) | ||
|
||
(global-set-key (kbd "C-c m S") 'emms-start) | ||
(global-set-key (kbd "C-c m g") 'emms-playlist-mode-go) | ||
(global-set-key (kbd "C-c m d") 'emms-play-directory-tree) | ||
(global-set-key (kbd "C-c m h") 'emms-shuffle) | ||
(global-set-key (kbd "C-c m e") 'emms-play-file) | ||
(global-set-key (kbd "C-c m l") 'emms-play-playlist) | ||
(global-set-key (kbd "C-c m r") 'emms-toggle-repeat-track) | ||
(global-set-key (kbd "C-c m R") 'emms-toggle-repeat-playlist) | ||
|
||
(add-hook 'emms-playlist-mode-hook | ||
(lambda () | ||
(toggle-truncate-lines 1))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
This is the file .../info/dir, which contains the | ||
topmost node of the Info hierarchy, called (dir)Top. | ||
The first time you invoke Info you start off looking at this node. | ||
File: dir, Node: Top This is the top of the INFO tree | ||
|
||
This (the Directory node) gives a menu of major topics. | ||
Typing "q" exits, "?" lists all Info commands, "d" returns here, | ||
"h" gives a primer for first-timers, | ||
"mEmacs<Return>" visits the Emacs manual, etc. | ||
|
||
In Emacs, you can click mouse button 2 on a menu item or cross reference | ||
to select it. | ||
|
||
* Menu: | ||
|
||
Emacs | ||
* Emms: (emms). The Emacs Multimedia System |
Oops, something went wrong.