contains a bug
This commit is contained in:
parent
89eb0892f0
commit
a6f778b2a8
3
REDME.md
3
REDME.md
@ -2,5 +2,8 @@
|
||||
- [ ] more widgets
|
||||
- [ ] popup
|
||||
- [ ] notifications
|
||||
- [ ] borders and separation of colors
|
||||
|
||||
# Bugs
|
||||
- [ ] Deflout not working
|
||||
- [ ] add jq as dependencies
|
||||
|
||||
49
bar.py
49
bar.py
@ -22,8 +22,6 @@ colors = [["#293136", "#293136"], #bg_dim [0]
|
||||
["#434F55", "#434F55"], #bg_2 [3]
|
||||
["#4D5960", "#4D5960"], #bg_3 [4]
|
||||
["#555F66", "#555F66"], #bg_4 [5]
|
||||
["#7FBBB3", "#7FBBB3"], #blue [6]
|
||||
["#A7C080", "#A7C080"], #green [7]
|
||||
["#DBBC7F", "#DBBC7F"], #yellow [8]
|
||||
["#E69875", "#E69875"], #orange [9]
|
||||
['#ED8082', '#ED8080'], #red [10]
|
||||
@ -89,6 +87,21 @@ kb_layout = widget.KeyboardLayout(
|
||||
**rounded_right,
|
||||
)
|
||||
|
||||
#wifi = widget.Wlan(
|
||||
#interface = "ath9k",
|
||||
#font="JetBrainsMono Nerd Font",
|
||||
#background=colors[10],
|
||||
#**rounded_right,
|
||||
#)
|
||||
|
||||
#vpn = widget.GenPollCommand(
|
||||
#update_interval = 3600,
|
||||
#background = colors[2],
|
||||
#shell = True,
|
||||
#cmd = "tailscale status --peers --json | jq '.ExitNodeStatus.ID as $node_id | .Peer[] | select(.ID==$node_id) | .HostName'",
|
||||
#**rounded_right,
|
||||
#)
|
||||
|
||||
ram = widget.Memory(
|
||||
font="JetBrainsMono Nerd Font",
|
||||
format = " {MemFree:.0f} {SwapFree:.0f}",
|
||||
@ -129,13 +142,15 @@ screens = [
|
||||
bottom=bar.Gap(5),
|
||||
|
||||
top=bar.Bar([
|
||||
icon,
|
||||
group_box,
|
||||
spacer,
|
||||
kb_layout,
|
||||
ram,
|
||||
battery,
|
||||
clock,
|
||||
#icon,
|
||||
#group_box,
|
||||
#spacer,
|
||||
#kb_layout,
|
||||
#wifi,
|
||||
#vpn,
|
||||
#ram,
|
||||
#battery,
|
||||
#clock,
|
||||
], 30,
|
||||
margin=6,
|
||||
),
|
||||
@ -150,13 +165,15 @@ screens = [
|
||||
bottom=bar.Gap(5),
|
||||
|
||||
top=bar.Bar([
|
||||
icon,
|
||||
group_box,
|
||||
spacer,
|
||||
kb_layout,
|
||||
ram,
|
||||
battery,
|
||||
clock,
|
||||
#icon,
|
||||
#group_box,
|
||||
#spacer,
|
||||
#kb_layout,
|
||||
#wifi,
|
||||
#vpn,
|
||||
#ram,
|
||||
#battery,
|
||||
#clock,
|
||||
], 30,
|
||||
margin=6,
|
||||
),
|
||||
|
||||
@ -1,2 +1,3 @@
|
||||
python-psutil for qtile-extras
|
||||
|
||||
python-psutil for qtile memory widget
|
||||
jq for ExitNode script
|
||||
python-iwlib for qtile wifi widget
|
||||
|
||||
3
keys.py
3
keys.py
@ -61,8 +61,9 @@ keys = [
|
||||
Key([mod], "z", lazy.widget["keyboardlayout"].next_keyboard(), desc="Next keyboard layout"),
|
||||
|
||||
# Toggle between different layouts as defined below
|
||||
Key([mod], "space", lazy.spawn("swaylock -C /home/godot/.config/swaylock/swaylock.conf"), desc="Launch firefox"),
|
||||
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),
|
||||
Key([mod], "f", lazy.window.toggle_floating(), desc="Toggle flotingness"),
|
||||
|
||||
Key([mod], "q", lazy.window.kill(), desc="Kill focused window"),
|
||||
Key([mod, "control"], "r", lazy.reload_config(), desc="Reload the config"),
|
||||
Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user