-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
panel corner cases, ttrss theme enhancement, dmenu headings, arm build
- Loading branch information
Showing
27 changed files
with
341 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# sdothum - 2016 (c) wtfpl | ||
|
||
# X11 Dynamic Menu | ||
# ▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂ | ||
|
||
# ............................................................ System diagnostic | ||
|
||
# list of potential system tools, verified by dmenu apps | ||
diagnostics="glances \ | ||
htop \ | ||
iftop \ | ||
iotop \ | ||
mtr \ | ||
nethogs \ | ||
xrestop \ | ||
" | ||
|
||
interface() { | ||
ip link show | grep '^[0-9]' | cut -d: -f2 | dmenu 'Interface' -no-custom || exit | ||
} | ||
|
||
diagnostic=$(previous diagnostic) | ||
while diagnostic=$(apps "$diagnostics" | dmenu 'Diagnostic' $diagnostic -no-custom) || exit | ||
do | ||
history diagnostic $diagnostic | ||
case $diagnostic in | ||
iftop ) term "$diagnostic" $diagnostic $(interface) ;; | ||
iotop ) term "$diagnostic" SHELL $diagnostic ;; | ||
nethogs) term "$diagnostic" sudo $diagnostic $(interface) ;; | ||
* ) term "$diagnostic" $diagnostic ;; | ||
esac | ||
exit | ||
done | ||
|
||
# vim: set ft=sh: # |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,8 +56,8 @@ | |
= proxies | ||
# ▔▔▔▔▔▔▔ | ||
# adsuck | ||
# polipo | ||
# privoxy | ||
# polipo [server] | ||
# privoxy [server] | ||
# squid | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.