Skip to content

Commit

Permalink
Cleanup, changes to qtile bar
Browse files Browse the repository at this point in the history
  • Loading branch information
mdupuis13 committed Aug 10, 2023
1 parent 10d3f4a commit 5f508c8
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ calibre/.config/calibre/gui.json
calibre/.config/calibre/gui.py.json
qBittorrent/.config/qBittorrent/qBittorrent-data.conf
qBittorrent/.config/qBittorrent/qBittorrent.conf
qBittorrent/.config/qBittorrent/lockfile
qBittorrent/.config/qBittorrent/rss/storage.lock
qtile/.config/qtile/__pycache__
2 changes: 0 additions & 2 deletions X/.screenlayout/md-0-0.layout.sh

This file was deleted.

2 changes: 0 additions & 2 deletions X/.screenlayout/md-centered.layout.sh

This file was deleted.

2 changes: 0 additions & 2 deletions X/.screenlayout/md-default.layout.sh

This file was deleted.

Empty file.
Empty file.
42 changes: 30 additions & 12 deletions qtile/.config/qtile/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,30 +310,48 @@ def set_all_float_windows_to_non_floating_mode(qtile):
widgets=[
widget.DF(
foreground=colors["purple"],
format="~ {r:.0f}%/{s}{m}",
format="<span size=\"26pt\" rise=\"-6pt\"></span> {r:.0f}%({s}{m})",
partition="/home",
update_interval=600,
visible_on_warn=False,
),
widget.HDDBusyGraph(
border_color=colors["purple"],
border_width=1,
device="nvme1n1p1",
fill_color=colors["purple"],
foreground=colors["purple"],
graph_color=colors["blue"],
line_width=2,
),
widget.TextBox(
'--',
'',
foreground=colors["purple"],
),
widget.DF(
foreground=colors["purple"],
)
# widget.DF(
# foreground=colors["purple"],
# format="Photo {r:.0f}%/{s}{m}",
# partition="/home/mdupuis/Photographie",
# update_interval=600,
# visible_on_warn=False,
# )
format="Photo {r:.0f}%({s}{m})",
partition="/home/mdupuis/Photographie",
update_interval=600,
visible_on_warn=False,
),
widget.HDDBusyGraph(
border_color=colors["purple"],
border_width=1,
device="sda2",
fill_color=colors["purple"],
foreground=colors["purple"],
graph_color=colors["blue"],
line_width=2,
),
]),
widget.Sep(
foreground=colors["purple"],
**sep_size
),
widget.CPU(
foreground=colors["blue"],
format="<span size=\"26pt\" rise=\"-6pt\"></span> {load_percent:.0f}% @ {freq_current}GHz",
format="<span size=\"26pt\" rise=\"-6pt\"></span> {load_percent:.0f}% @ {freq_current}GHz",
markup=True,
update_interval=2,
),
Expand All @@ -349,7 +367,7 @@ def set_all_float_windows_to_non_floating_mode(qtile):
foreground=colors["blue"],
format=" <span size=\"26pt\" rise=\"-6pt\">󰎁</span> {MemUsed:.2f}G => {MemPercent:.0f}%",
markup=True,
measure_mem='G',
measure_mem='G',
update_interval=2,
),
widget.ThermalSensor(
Expand Down

0 comments on commit 5f508c8

Please sign in to comment.