Skip to content

Commit

Permalink
Revert "feat(notes): change mapping to mod+o"
Browse files Browse the repository at this point in the history
This reverts commit b827484.
  • Loading branch information
KirkEasterson committed Nov 15, 2024
1 parent 4eab2eb commit da60665
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions qtile/.config/qtile/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ def autostart_once():
desc="Spawn alternative browser",
),
# notes
Key([MOD], "o", lazy.spawn("notes.sh edit"), desc="Take notes"),
Key([MOD], "n", lazy.spawn("notes.sh edit"), desc="Take notes"),
Key(
[MOD, "shift"],
"o",
"n",
lazy.spawn("notes.sh view"),
desc="View notes",
),
Expand Down
4 changes: 2 additions & 2 deletions river/.config/river/modules/04-mappings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ riverctl map normal Super W spawn "$BROWSER"
riverctl map normal Super+Shift W spawn "$BROWSER_SECONDARY"

# notes
riverctl map normal Super O spawn "notes.sh edit"
riverctl map normal Super+Shift O spawn "notes.sh view"
riverctl map normal Super N spawn "notes.sh edit"
riverctl map normal Super+Shift N spawn "notes.sh view"

# screenshot
riverctl map normal None Print spawn "screenshot.sh gui"
Expand Down
4 changes: 2 additions & 2 deletions sway/.config/sway/modules/04-mappings.conf
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ bindsym --no-repeat $mod+w exec $BROWSER
bindsym --no-repeat $mod+Shift+w exec $BROWSER_SECONDARY

# Notes
bindsym --no-repeat $mod+o exec notes.sh edit
bindsym --no-repeat $mod+Shift+o exec notes.sh view
bindsym --no-repeat $mod+n exec notes.sh edit
bindsym --no-repeat $mod+Shift+n exec notes.sh view

################################
# Screenshot
Expand Down
4 changes: 2 additions & 2 deletions sxhkd/.config/sxhkd/sxhkdrc
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ super + ctrl + space
emoji_picker.sh

# notes
super + o
super + n
notes.sh edit
super + shift + o
super + shift + n
notes.sh view

# media keys
Expand Down

0 comments on commit da60665

Please sign in to comment.