Commit Graph

187 Commits

Author SHA1 Message Date
anntnzrb
2f335c3c2e Log errors to stderr 2021-08-24 09:39:23 -05:00
Luke Smith
b4167af0e7
paru was retarded and broken. install yay-bin 2021-08-23 12:40:56 -04:00
Luke Smith
f57d823134
fix #368 2021-07-12 16:53:29 -04:00
Youssef Bouzekri
20a1a1c84a
Use the paru AUR helper instead of yay 2021-06-26 14:48:46 -04:00
Luke Smith
42547f6155
fix #361 2021-06-24 20:36:25 -04:00
Luke Smith
88b03c6eb7
fix #360 2021-06-24 20:30:27 -04:00
Luke Smith
3dc1513d90
fix #352 2021-05-30 21:23:39 -04:00
Luke Smith
845b4b4604
clone with submodules, close #326 2021-02-18 17:49:36 -05:00
Luke Smith
5f205dde22
fix #323 2021-02-01 10:49:34 -05:00
Luke Smith
1728f734e1
create url file if not present 2021-01-09 16:41:35 -05:00
Luke Smith
0285bf9844
artix keyring fix 2020-11-06 12:51:05 -05:00
Luke Smith
9fdf6f6abc
Merge branch 'master' of github.com:LukeSmithxyz/LARBS 2020-11-06 12:50:18 -05:00
anntnzrb
63717dcb73 User-defined aliases/functions prevention 2020-11-06 10:56:34 -05:00
anntnzrb
8d01c333ed Added corresponding return statements codes 2020-11-06 10:52:03 -05:00
anntnzrb
9f2b936a7f Removed unnecessary sub-shell, use braces instead 2020-11-06 10:49:51 -05:00
anntnzrb
ada7cb718b Added corresponding exit codes
- Redirection to stderr `>&2` also added to the `printf` statement in the
  `error()` function
2020-11-06 10:34:51 -05:00
Luke Smith
cc6966b6d9
dumb 2020-11-04 14:31:00 -05:00
Kipras Melnikovas
cd5b32c591
fix the "tap-to-click" enabler
1. We need them quotes (`"`) where they are specified in the `40-libinput.conf` file, but if you use `echo` and echo surround the output string itself with the double quotes (`"`), the ones inside it will get removed. fixed.

pretty lucky that I just happened to be a part of the convo in https://github.com/LukeSmithxyz/LARBS/issues/118 to get a notification & thus notice & try out 1d8b03595a - Xorg reported an error and couldn't launch i3, so here we are:D

2. (misc since it doesn't matter as much here but anyhow) `echo` shouldn't be used in any scripts anyway because it's unpredictable, and `printf` should be preferred (imo, anyway. Just mind that you there's no extra newline so if you need one/expected one from echo - add it yourself):

```sh
# unpredictable echo (with newline by default, though not always)
$ echo "omg larbs so kewl"
omg larbs so kewl
$
```

```sh
# predictable printf without a newline by default
$ printf "omg larbs so kewl"
omg larbs so kewl $
```

```sh
# predictable printf with a newline because you said so
$ printf "omg larbs so kewl\n"
omg larbs so kewl
$
```

take care!
2020-10-12 19:35:19 +03:00
Luke Smith
1d8b03595a
turn on tap to click by default. fix #118 2020-10-11 15:27:51 -04:00
Luke Smith
936f530a79
fix? 2020-10-11 09:34:46 -04:00
Luke Smith
ac3a23c6a4
non-posix braces {} removed 2020-10-10 14:04:24 -04:00
Luke Smith
98485a873b
fluidsynth silent audio on startup fix 2020-10-08 10:17:11 -04:00
Luke Smith
8222b4cb87
minor tweaks 2020-09-12 19:37:43 -04:00
Luke Smith
82f295e880
brave block causes problems 2020-09-10 20:00:28 -04:00
Luke Smith
53ab544ed1
Merge branch 'master' of github.com:LukeSmithxyz/LARBS into master 2020-09-06 16:44:20 -04:00
Luke Smith
ade038053e
arch/artix only, zsh default, cleanup 2020-09-06 16:44:15 -04:00
szczagi
ff2af5892f
Update larbs.sh
change from normal libxft-bgra to libxft-bgra-git due to being outdated and with broken keys
2020-08-27 21:14:00 +02:00
Luke Smith
5ffc31bbc1
i3 removed 2020-06-08 13:45:25 -04:00
Luke Smith
654114f88a
delete funding when installed 2020-06-02 15:28:42 -04:00
Luke Smith
ab7abad546
Revert "reduce redundant code into 2 functions"
This reverts commit 3cc8675993.
2020-05-31 18:58:23 -04:00
Vlad Doster
3cc8675993
reduce redundant code into 2 functions
- much easier to read
- reduce places to change
- reusable if ever need to add more inputs
2020-05-31 15:37:31 -05:00
Luke Smith
eb89e0b253
create cache dir with correct user 2020-05-26 14:15:40 -04:00
Luke Smith
f8dd8ca886
Merge branch 'patch-1' of https://github.com/g-w1/LARBS into g-w1-patch-1 2020-05-26 14:12:00 -04:00
g-w1
b8a539b4ff
Make it so that zsh can write a histfile.
Zsh needs a directory to write it's history to. It can not make a directory and therefore, will not record history.
2020-05-26 14:01:24 -04:00
Vlad Doster
4115ca5b19
use chsh over hard to read sed to set shell 2020-05-26 06:39:13 -05:00
Luke Smith
34be24dbaf
note about updates and keyrings 2020-05-25 09:47:32 -04:00
Luke Smith
f145e559e4
refresh keys automatically
better zsh regex
2020-05-18 09:16:05 -04:00
Luke Smith
fd9c97310a
i3 start fix 2020-05-13 07:50:08 -04:00
Luke Smith
0b08204828
Merge branch 'master' of github.com:LukeSmithxyz/LARBS 2020-04-28 09:00:44 -04:00
Luke Smith
979484d9e7
also clone submodules 2020-04-28 08:55:07 -04:00
Kipras Melnikovas
40c3a5bdd0
Make git ignore deleted LICENSE & README.md files
Signed-off-by: Kipras Melnikovas <kipras@kipras.org>
2020-04-25 15:19:34 +00:00
Luke Smith
37a8431d39
Merge pull request #215 from jlaw/patch-3
fix: Correct flag to specify user
2020-04-24 08:46:21 -04:00
Luke Smith
370808fd66
Merge pull request #213 from jlaw/patch-1
fix: chown parent directory
2020-04-24 08:44:22 -04:00
Jackson Law
93fd71e403
fix: Correct flag to specify user 2020-04-24 03:09:08 -07:00
Jackson Law
2c1eb62b0b
fix: Correct ntpdate command 2020-04-24 02:57:13 -07:00
Jackson Law
7516755106
fix: chown parent directory 2020-04-24 02:54:39 -07:00
Luke Smith
2d7e3aca1f
re-enable chrome store 2020-04-15 10:36:47 -04:00
Jackson Law
8b9a9652a3 Strip '.git' from working dir when cloning repos 2020-04-11 00:38:01 -07:00
Luke Smith
4130813371
no more larbswm garbage, manual commenting 2020-04-10 22:11:49 -04:00
Luke Smith
c539b8949c
pulseaudio now default audio system 2020-04-09 17:14:26 -04:00