Commit graph

365 commits

Author SHA1 Message Date
Luke Smith
2c7a334469
neurtral default font 2021-03-29 21:36:47 -04:00
Luke Smith
e7b6d4d211
Merge branch 'patch-1' of https://github.com/Jonatan6/voidrice into Jonatan6-patch-1 2021-03-29 21:35:05 -04:00
skrrtskrrtman
12d6d5ec80
add display off option (#920)
mostly for laptops to save power
2021-03-29 21:30:01 -04:00
Stephen Szwiec
87c2950039
Handle color control sequences (#911)
* Handle color control sequences

Is: `less` outputs the raw ascii of the $chartfile, which includes escape characters to change output colors. This does not resemble a graph. 
Should be: Adding -n flag to have `less` create colored output properly.

* typo

changed to -Srf to reflect proposed change
2021-03-10 07:19:47 -05:00
Luke Smith
f47e40243f
clean up 2021-03-07 15:07:41 -05:00
Luke Smith
6bbaa96903
fix 2021-03-07 15:06:57 -05:00
narukeh
bc553f06be fix sb-forecast 2021-03-05 15:43:44 +01:00
shunlog
73b174cedf
Noobish mistake (#906) 2021-02-28 16:08:51 -05:00
MRAAGH
1692a8fe15
support .tar.zst (#903) 2021-02-23 11:43:47 -05:00
Luke Smith
219ea40fe9
multibattery functionality returned close #899 2021-02-15 10:53:41 -05:00
Jonatan6
165f25c3eb
make it possible to change the font for text slides
I set free-sans to be the default, because it seems that that is what imagemagick is uses, when you don't specify a font.
2021-02-10 17:47:30 +01:00
Luke Smith
f70f44e419
Merge branch 'master' of github.com:LukeSmithxyz/voidrice 2021-02-07 17:31:00 -05:00
Luke Smith
3249d6b100
clean up 2021-02-07 17:30:49 -05:00
M. Yas. Davoodeh
8f36b8feb8
Add minted/pyg files to texclear (#865) 2021-02-07 16:56:29 -05:00
skrrtskrrtman
f4b88997db
add pass to tutorialvids (#892) 2021-02-05 08:39:34 -05:00
Tenyun
10c2eb29ae
Prevent unnecessary caching of tsp output (#888)
Co-authored-by: Tenyun <tenyun@disroot.org>
2021-01-26 14:46:23 -05:00
Luke Smith
eded46a39e
minor impr prevent running on non-images 2021-01-20 14:50:35 -05:00
karioki
9adf0e6bcd
Restoring missing line for zsh file shortcuts (#879) 2021-01-10 14:25:12 -05:00
M.Zeinali
7898b357ba
md to pdf using ms engine instead of latex (#877) 2021-01-06 09:12:34 -05:00
Hekuran
60ed035ffd
adopting sb- (#875)
* adopting `sb-`

The 2619a88fcd update might have broken scripts, like this, that use a script from `~sc/statusbar/`

* adopt `sb-`
2020-12-26 21:15:57 -05:00
Luke Smith
f47ab40c5f
turn off caps lock if on in remaps script 2020-12-25 09:50:21 -05:00
Luke Smith
9085120787
task-spooler statusbar module 2020-12-25 08:26:48 -05:00
Luke Smith
2619a88fcd
statusbar scripts now with sb- to avoid conflicts
update dwmblocks build to avoid errors
2020-12-25 08:02:50 -05:00
Luke Smith
741e9298bd
battery warning fix; zsh beam simplified 2020-12-18 11:56:46 -05:00
Luke Smith
29c8156e66
oops 2020-12-16 07:50:04 -05:00
Luke Smith
ef82a47049
conform style 2020-12-15 16:29:17 -05:00
KawaiiAmber
2548c0bc20 No longer calls cat twice 2020-12-15 14:01:53 -07:00
KawaiiAmber
c3e3dd737a Case block and function is more effecient according to the old for x in seq 10000 test 2020-12-14 19:50:09 -07:00
ashprice
c3eefd7a68
Fixed edp1 botching dp1 grep (#861)
Co-authored-by: ashprice <vofan@tuta.io>
2020-12-11 09:51:50 -05:00
Alexander Goussas
88385a0c6d
Added Java support for compiler script (#860)
Tested it on a project with this structure:

```
- root
 |- test
    | - Test.java
```

The user must call `compiler` from the root of the project, but that should not
be an inconvenience because usually the working directory is the project's
root. Nonetheless, it also works for java files in the current working directory,
in case someone just wants to test some code quickly.
2020-12-10 13:55:00 -05:00
Luke Bubar
f190ab32c3
Added C# support to compiler script (#858) 2020-12-07 15:55:03 -05:00
Luke Smith
bfd7ef110c
Merge branch 'master' of github.com:LukeSmithxyz/voidrice 2020-12-02 10:53:50 -05:00
Luke Smith
4b50830148
fix #854 2020-12-02 10:53:41 -05:00
anntnzrb
7c96bd081a
Compatibility for FreeBSD's paste(1) (#853)
* Compatibility for FreeBSD's paste(1)

According to FreeBSD's
[paste(1)](https://www.freebsd.org/cgi/man.cgi?query=paste&sektion=1&manpath=FreeBSD+12.2-RELEASE+and+Ports),
the extra `-` is needed (tested by myself).
This obviously works for Linux as well, tested on Void Linux at least.

> Create a colon-separated list of directories named bin,
> suitable for use in the PATH environment variable:

`find / -name bin -type d | paste -s -d : -`

* Compatibility for FreeBSD's paste(1)

According to FreeBSD's
[paste(1)](https://www.freebsd.org/cgi/man.cgi?query=paste&sektion=1&manpath=FreeBSD+12.2-RELEASE+and+Ports),
the extra `-` is needed (tested by myself).
This obviously works for Linux as well, tested on Void Linux at least.

> Create a colon-separated list of directories named bin,
> suitable for use in the PATH environment variable:

`find / -name bin -type d | paste -s -d : -`
2020-12-01 18:21:03 -05:00
anntnzrb
1d9fda8826
read command fix (#848)
since the variable is not being used again, "_" wil suffice, "line" as the name
would also be valid.
2020-11-23 16:15:16 -05:00
Luke Smith
941b14bfe7
since readme moved to dwm, fix #845 2020-11-22 07:33:30 -05:00
Luke Smith
c7e3d61753
old script cleanout 2020-11-17 16:44:07 -05:00
Luke Smith
9df28899de
Merge branch 'master' of github.com:LukeSmithxyz/voidrice 2020-11-16 18:09:21 -05:00
Luke Smith
cba0fcc03d
old stuff removed
many files renamed, possible breakage
2020-11-16 18:06:41 -05:00
Shaw
4493d431e3
Add system will lock before suspend/hibernate (#797)
Co-authored-by: Luke Smith <luke@lukesmith.xyz>
2020-11-14 15:16:13 -05:00
Arthur Bais
38815c3ad1
add peertube torrents from newsboat (#760)
* Create peertubetorrent

* macro to torrent new videos on peertube

* fix typo

* rebind
2020-11-14 15:12:38 -05:00
Astronach
97358cfe81
add vpn indicator to internet status modul (#796)
for me /sys/class/net/tun*/operstate show unknown in every state, but ./net/tun* only exists, if vpn is on
2020-11-14 15:11:08 -05:00
Shaw
3215e7b4bb
Add video selection to dmenurecord (#825) 2020-11-14 15:10:19 -05:00
Luke Smith
11d4f16fb4
close #832
proper user id
2020-11-14 15:09:25 -05:00
Luke Smith
340995f6f9
compiler tweaks 2020-11-11 17:04:28 -05:00
Luke Smith
aea27f3f2b
slider now takes text and has many nice options 2020-11-11 17:03:55 -05:00
M. Yas. Davoodeh
be8ff717b1
Use Emacs to compile org files (#839) 2020-11-09 16:03:38 -05:00
Hekuran
7f139718e9
UAE - update autisticly efficient (#838) 2020-11-08 19:49:34 -05:00
Epacnoss
611645af97
Add support for Org-Mode files. (#837) 2020-11-08 07:57:37 -05:00
Luke Smith
a801ddcbfc
Merge branch 'master' of github.com:LukeSmithxyz/voidrice 2020-11-01 20:39:02 -05:00