Update Dotfiles

Signed-off-by: The-Repo-Club <wayne6324@gmail.com>
This commit is contained in:
The-Repo-Club 2023-09-16 09:57:37 +00:00
parent 6fb2cbc45d
commit d689e7e888
No known key found for this signature in database
GPG Key ID: E30EC2FBFB05C44F
3 changed files with 15 additions and 15 deletions

View File

@ -1,7 +1,7 @@
{ {
"bar": "shapes", "bar": "shapes",
"bar2": "bottom", "bar2": "bottom",
"browser": "firefox", "browser": "opera",
"term": "alacritty", "term": "alacritty",
"term2": "kitty", "term2": "kitty",
"editor": "code", "editor": "code",

View File

@ -16,7 +16,7 @@ for key, label, layout, matches in [
( (
"2", "2",
"", "",
"max", None,
Match(wm_class=re.compile("^Code.*|^Jetbrains.*", re.IGNORECASE)), Match(wm_class=re.compile("^Code.*|^Jetbrains.*", re.IGNORECASE)),
), ),
( (
@ -28,43 +28,43 @@ for key, label, layout, matches in [
( (
"4", "4",
"", "",
"max", None,
Match(wm_class=re.compile("^Aseprite.*|^Krita.*", re.IGNORECASE)), Match(wm_class=re.compile("^Aseprite.*|^Krita.*", re.IGNORECASE)),
), ),
( (
"5", "5",
"", "",
"max", None,
Match(wm_class=re.compile("^CmusImage.*", re.IGNORECASE)), Match(wm_class=re.compile("^CmusImage.*", re.IGNORECASE)),
), ),
( (
"6", "6",
"", "",
"max", None,
Match(wm_class=re.compile("^Firefox.*|^Brave.*", re.IGNORECASE)), Match(wm_class=re.compile("^Firefox.*|^Opera.*", re.IGNORECASE)),
), ),
( (
"7", "7",
"", "",
"max", None,
Match(wm_class=re.compile("^Mail.*|^Thunderbird.*", re.IGNORECASE)), Match(wm_class=re.compile("^Mail.*|^Thunderbird.*", re.IGNORECASE)),
), ),
( (
"8", "8",
"", "",
"max", None,
Match(wm_class=re.compile("^Steam.*|^Minecraft.*|^0ad.*", re.IGNORECASE)), Match(wm_class=re.compile("^Steam.*|^Minecraft.*|^0ad.*", re.IGNORECASE)),
), ),
( (
"9", "9",
"", "",
"max", None,
Match(wm_class=re.compile("^Discord.*", re.IGNORECASE)), Match(wm_class=re.compile("^Discord.*", re.IGNORECASE)),
), ),
( (
"0", "0",
"", "",
"max", None,
Match(wm_class=re.compile("^Software.*|^Virt.*|^Btop.*", re.IGNORECASE)), Match(wm_class=re.compile("^Software.*|^Virt.*|^Btop.*", re.IGNORECASE)),
), ),
]: ]:
@ -92,7 +92,7 @@ for key, label, layout, matches in [
[ [
DropDown( DropDown(
"term", "term",
"kitty --name=scratch", "alacritty --class Scratch",
width=0.6, width=0.6,
height=0.6, height=0.6,
x=0.2, x=0.2,
@ -101,7 +101,7 @@ for key, label, layout, matches in [
), ),
DropDown( DropDown(
"clifm", "clifm",
"kitty --name=clifm -e clifm", "alacritty --class CliFM -e clifm",
width=0.6, width=0.6,
height=0.6, height=0.6,
x=0.2, x=0.2,
@ -110,7 +110,7 @@ for key, label, layout, matches in [
), ),
DropDown( DropDown(
"btop", "btop",
"kitty --name=btop -e btop", "alacritty --class bTop -e btop",
width=0.6, width=0.6,
height=0.6, height=0.6,
x=0.2, x=0.2,
@ -119,7 +119,7 @@ for key, label, layout, matches in [
), ),
DropDown( DropDown(
"volume", "volume",
"pavucontrol", "PavuControl",
width=0.6, width=0.6,
height=0.6, height=0.6,
x=0.2, x=0.2,

View File

@ -10,7 +10,7 @@ margins = [sum(bar.margin) if bar else -1 for bar in bars] # type: ignore
configure = [ configure = [
"autostart", "autostart",
"youtube_subs -d", "youtube_subs -d",
"autorandr --load qtile", # "autorandr --load qtile",
"setxkbmap -option caps:escape", "setxkbmap -option caps:escape",
] ]