diff --git a/install.sh b/install.sh index d90d046..537f558 100644 --- a/install.sh +++ b/install.sh @@ -858,8 +858,8 @@ def main(image_path): 'base00': rgb_to_hex(colors[0].rgb), 'base01': rgb_to_hex(colors[1].rgb), 'base02': rgb_to_hex(colors[9].rgb), - 'base03': rgb_to_hex(colors[3].rgb), - 'base04': rgb_to_hex(colors[12].rgb), + 'base03': rgb_to_hex(colors[12].rgb), + 'base04': rgb_to_hex(colors[3].rgb), 'base05': rgb_to_hex(colors[5].rgb), 'base06': rgb_to_hex(colors[6].rgb), 'base07': rgb_to_hex(colors[7].rgb), @@ -1697,7 +1697,7 @@ for i in groups: keys.extend([ Key([mod, "shift"], "Return", lazy.group['scratchpad'].dropdown_toggle('term')), Key([mod, "shift"], "e", lazy.group['scratchpad'].dropdown_toggle('mc')), - Key([mod, "shift"], "v", lazy.group['scratchpad'].dropdown_toggle('volume')), + Key([mod, "shift"], "a", lazy.group['scratchpad'].dropdown_toggle('audio')), Key([mod, "shift"], "t", lazy.group['scratchpad'].dropdown_toggle('term2')), ]) @@ -1706,7 +1706,7 @@ groups.append(ScratchPad("scratchpad", [ DropDown("term", "kitty --class=scratch", width=0.8, height=0.8, x=0.1, y=0.1, opacity=1), DropDown("term2", "kitty --class=scratch", width=0.8, height=0.8, x=0.1, y=0.1, opacity=1), DropDown("mc", "kitty --class=mc -e mc", width=0.8, height=0.8, x=0.1, y=0.1, opacity=1), - DropDown("volume", "kitty --class=volume -e alsamixer", width=0.8, height=0.8, x=0.1, y=0.1, opacity=1), + DropDown("audio", "kitty --class=volume -e alsamixer", width=0.8, height=0.8, x=0.1, y=0.1, opacity=1), ]))