...
This commit is contained in:
parent
c1e20110a6
commit
5cbdbf7c5b
4 changed files with 93 additions and 0 deletions
33
calcurse/conf
Normal file
33
calcurse/conf
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
appearance.calendarview=monthly
|
||||||
|
appearance.compactpanels=no
|
||||||
|
appearance.defaultpanel=calendar
|
||||||
|
appearance.layout=1
|
||||||
|
appearance.headerline=yes
|
||||||
|
appearance.eventseparator=yes
|
||||||
|
appearance.dayseparator=yes
|
||||||
|
appearance.emptyline=yes
|
||||||
|
appearance.emptyday=--
|
||||||
|
appearance.notifybar=yes
|
||||||
|
appearance.sidebarwidth=27
|
||||||
|
appearance.theme=red on default
|
||||||
|
appearance.todoview=hide-completed
|
||||||
|
appearance.headingpos=right-justified
|
||||||
|
daemon.enable=no
|
||||||
|
daemon.log=no
|
||||||
|
format.inputdate=1
|
||||||
|
format.notifydate=%a %F
|
||||||
|
format.notifytime=%T
|
||||||
|
format.appointmenttime=%H:%M
|
||||||
|
format.outputdate=%D
|
||||||
|
format.dayheading=%B %e, %Y
|
||||||
|
general.autogc=no
|
||||||
|
general.autosave=yes
|
||||||
|
general.confirmdelete=yes
|
||||||
|
general.confirmquit=yes
|
||||||
|
general.firstdayofweek=monday
|
||||||
|
general.multipledays=yes
|
||||||
|
general.periodicsave=0
|
||||||
|
general.systemevents=yes
|
||||||
|
notification.command=printf '\a'
|
||||||
|
notification.notifyall=flagged-only
|
||||||
|
notification.warning=300
|
56
calcurse/keys
Normal file
56
calcurse/keys
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
#
|
||||||
|
# Calcurse keys configuration file
|
||||||
|
#
|
||||||
|
# In this file the keybindings used by Calcurse are defined.
|
||||||
|
# It is generated automatically by Calcurse and is maintained
|
||||||
|
# via the key configuration menu of the interactive user
|
||||||
|
# interface. It should not be edited directly.
|
||||||
|
|
||||||
|
generic-cancel ESC
|
||||||
|
generic-select SPC
|
||||||
|
generic-credits @
|
||||||
|
generic-help ?
|
||||||
|
generic-quit q Q
|
||||||
|
generic-save s S ^S
|
||||||
|
generic-reload R
|
||||||
|
generic-copy c
|
||||||
|
generic-paste p ^V
|
||||||
|
generic-change-view TAB
|
||||||
|
generic-prev-view KEY_BTAB
|
||||||
|
generic-import i I
|
||||||
|
generic-export x X
|
||||||
|
generic-goto g G
|
||||||
|
generic-other-cmd o O
|
||||||
|
generic-config-menu C
|
||||||
|
generic-redraw ^R
|
||||||
|
generic-add-appt ^A
|
||||||
|
generic-add-todo ^T
|
||||||
|
generic-prev-day T ^H
|
||||||
|
generic-next-day t ^L
|
||||||
|
generic-prev-week W ^K
|
||||||
|
generic-next-week w
|
||||||
|
generic-prev-month M
|
||||||
|
generic-next-month m
|
||||||
|
generic-prev-year Y
|
||||||
|
generic-next-year y
|
||||||
|
generic-scroll-down ^N
|
||||||
|
generic-scroll-up ^P
|
||||||
|
generic-goto-today ^G
|
||||||
|
generic-command :
|
||||||
|
move-right l L RGT
|
||||||
|
move-left h H LFT
|
||||||
|
move-down j J DWN
|
||||||
|
move-up k K UP
|
||||||
|
start-of-week 0
|
||||||
|
end-of-week $
|
||||||
|
add-item a A
|
||||||
|
del-item d D
|
||||||
|
edit-item e E
|
||||||
|
view-item v V RET
|
||||||
|
pipe-item |
|
||||||
|
flag-item !
|
||||||
|
repeat r
|
||||||
|
edit-note n N
|
||||||
|
view-note >
|
||||||
|
raise-priority +
|
||||||
|
lower-priority -
|
|
@ -71,6 +71,7 @@ export-loop \
|
||||||
GOBIN '$HOME/exe'\
|
GOBIN '$HOME/exe'\
|
||||||
XDG_UTILS_DEBUG_LEVEL '3'\
|
XDG_UTILS_DEBUG_LEVEL '3'\
|
||||||
XDG_CONFIG_HOME '$HOME/.config' \
|
XDG_CONFIG_HOME '$HOME/.config' \
|
||||||
|
XDG_DATA_HOME '$HOME/dat' \
|
||||||
GIT 'https://surdeus.su' \
|
GIT 'https://surdeus.su' \
|
||||||
PERSONAL_SHELL 'sh' \
|
PERSONAL_SHELL 'sh' \
|
||||||
VIMRC '$HOME/.vimrc'\
|
VIMRC '$HOME/.vimrc'\
|
||||||
|
|
|
@ -74,6 +74,9 @@ riverctl map-pointer normal Super BTN_RIGHT resize-view
|
||||||
# Super + Middle Mouse Button to toggle float
|
# Super + Middle Mouse Button to toggle float
|
||||||
riverctl map-pointer normal Super BTN_MIDDLE toggle-float
|
riverctl map-pointer normal Super BTN_MIDDLE toggle-float
|
||||||
|
|
||||||
|
#
|
||||||
|
riverctl map-pointer normal Super BTN_GEAR_DOWN focus-view next
|
||||||
|
|
||||||
for i in $(seq 1 9)
|
for i in $(seq 1 9)
|
||||||
do
|
do
|
||||||
tags=$((1 << ($i - 1)))
|
tags=$((1 << ($i - 1)))
|
||||||
|
|
Loading…
Reference in a new issue