Skip to content

Commit

Permalink
Fixes and additions for regolith-linux/regolith-desktop#24.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgilmer committed Jul 26, 2019
1 parent f3b2bdb commit f41e73d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions debian/changelog
@@ -1,3 +1,10 @@
regolith-i3xrocks-config (1.5-1ubuntu1ppa1) bionic; urgency=medium

* Add necessary dependencies for blocklets.
* Fix issue w/ xresources.

-- Ken Gilmer <kgilmer@gmail.com> Thu, 25 Jul 2019 19:05:12 -0700

regolith-i3xrocks-config (1.4-1ubuntu1ppa1) bionic; urgency=medium

* i3xrocks blocklets are hosted in user dir.
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Expand Up @@ -9,5 +9,5 @@ Vcs-Git: https://github.com/regolith-linux/regolith-i3xrocks-config.git

Package: regolith-i3xrocks-config
Architecture: any
Depends: ${misc:Depends}
Depends: ${misc:Depends}, sysstat, xrescat
Description: Regolith configuration for i3xrocks launcher
4 changes: 2 additions & 2 deletions scripts/cpu_usage
Expand Up @@ -43,7 +43,7 @@ $cpu_usage eq -1 and die 'Can\'t find CPU information';


# Print short_text, full_text
printf "<span font_desc='%s' color='%s'>%2d%%</span>\n", `xgetres i3xrocks.value.font`, `xgetres i3xrocks.value.color`, $cpu_usage;
printf "<span font_desc='%s' color='%s'>%2d%%</span>\n", `xgetres i3xrocks.value.font`, `xgetres i3xrocks.value.color`, $cpu_usage;
printf "<span font_desc='%s' color='%s'>%2d%%</span>\n", `xrescat i3xrocks.value.font`, `xrescat i3xrocks.value.color`, $cpu_usage;
printf "<span font_desc='%s' color='%s'>%2d%%</span>\n", `xrescat i3xrocks.value.font`, `xrescat i3xrocks.value.color`, $cpu_usage;

exit 0;

0 comments on commit f41e73d

Please sign in to comment.