/usr/share/denemo/actions/Composer.scm is in denemo-data 2.0.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | ;Composer Mode hardcoded default number keys to "Insert Note"
;;car is the default value, cdr is the current one. Various scripts alter the cdr to temporarily change the number keys.
(define wrap:Op0 (cons d-Insert0 d-Insert0))
(define wrap:Op1 (cons d-Insert1 d-Insert1))
(define wrap:Op2 (cons d-Insert2 d-Insert2))
(define wrap:Op3 (cons d-Insert3 d-Insert3))
(define wrap:Op4 (cons d-Insert4 d-Insert4))
(define wrap:Op5 (cons d-Insert5 d-Insert5))
(define wrap:Op6 (cons d-Insert6 d-Insert6))
(define wrap:Op7 (cons d-Insert7 d-Insert7))
(define wrap:Op8 (cons d-InsertBreve d-InsertBreve))
(define wrap:Op9 (cons d-InsertLonga d-InsertLonga))
|