Update install.sh

This commit is contained in:
2024-05-25 23:00:02 +02:00
parent f9d1c764b2
commit 6395e6c474

View File

@@ -858,8 +858,8 @@ def main(image_path):
'base00': rgb_to_hex(colors[0].rgb), 'base00': rgb_to_hex(colors[0].rgb),
'base01': rgb_to_hex(colors[1].rgb), 'base01': rgb_to_hex(colors[1].rgb),
'base02': rgb_to_hex(colors[9].rgb), 'base02': rgb_to_hex(colors[9].rgb),
'base03': rgb_to_hex(colors[3].rgb), 'base03': rgb_to_hex(colors[12].rgb),
'base04': rgb_to_hex(colors[12].rgb), 'base04': rgb_to_hex(colors[3].rgb),
'base05': rgb_to_hex(colors[5].rgb), 'base05': rgb_to_hex(colors[5].rgb),
'base06': rgb_to_hex(colors[6].rgb), 'base06': rgb_to_hex(colors[6].rgb),
'base07': rgb_to_hex(colors[7].rgb), 'base07': rgb_to_hex(colors[7].rgb),
@@ -1697,7 +1697,7 @@ for i in groups:
keys.extend([ keys.extend([
Key([mod, "shift"], "Return", lazy.group['scratchpad'].dropdown_toggle('term')), Key([mod, "shift"], "Return", lazy.group['scratchpad'].dropdown_toggle('term')),
Key([mod, "shift"], "e", lazy.group['scratchpad'].dropdown_toggle('mc')), 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')), 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("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("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("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),
])) ]))