mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2025-01-10 12:22:35 +01:00
Compare commits
No commits in common. "15c93ccaddf78541f9cd88288a272b62e73a738b" and "f383701f9ec49b20902fb531704ceb400b5204f1" have entirely different histories.
15c93ccadd
...
f383701f9e
1
cryptocurrency/start/README.md
Normal file
1
cryptocurrency/start/README.md
Normal file
@ -0,0 +1 @@
|
||||
Scripts to run cryptocurrency related apps. Place to $PATH (preferably /usr/local/bin or $HOME/.local/bin). These apps don't add themselves to LXDE menu, and the command is annoying to type always.
|
3
cryptocurrency/start/multibit
Executable file
3
cryptocurrency/start/multibit
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
cd /usr/local/MultiBit-*
|
||||
(java -jar /usr/local/MultiBit-*/multibit-exe.jar $1&)
|
3
cryptocurrency/start/multidoge
Executable file
3
cryptocurrency/start/multidoge
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
cd /usr/local/MultiDoge-*
|
||||
(java -jar /usr/local/MultiDoge-*/multidoge-exe.jar $1&)
|
7
cryptocurrency/start/multiinstall
Executable file
7
cryptocurrency/start/multiinstall
Executable file
@ -0,0 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
cd /usr/local/bin
|
||||
curl -LO https://github.com/Mkaysi/gist/raw/master/cryptocurrency/start/multibit
|
||||
chmod +x multibit
|
||||
curl -LO https://github.com/Mkaysi/gist/raw/master/cryptocurrency/start/multidoge
|
||||
chmod 755 multidoge
|
||||
cd
|
@ -1,32 +0,0 @@
|
||||
# Notes related to gaming
|
||||
|
||||
A lot of older files that I haven't touched recently were moved to this
|
||||
directory. I don't think anyone was using them, so I am not afraid of
|
||||
breaking links.
|
||||
|
||||
## Wayland / Sway
|
||||
|
||||
### Issues and solutions
|
||||
|
||||
#### Constant camera rotation
|
||||
|
||||
Reload Sway in-game, `$Mod+Shift+C` and it should stop.
|
||||
|
||||
#### Cursor doesn't stick to game window
|
||||
|
||||
Run the game with `gamescope`.
|
||||
|
||||
Steam? Edit launch options for the game (second click, properties, general,
|
||||
launch options): `gamescope --steam --borderless -- %command%`
|
||||
|
||||
See also `gamescope --help`
|
||||
|
||||
* `--steam` - enables Steam integration, whatever that is
|
||||
* `--borderless` borderless full-screen mode (that Sway may be making
|
||||
windowed though)
|
||||
|
||||
#### Steam client itself is laggy
|
||||
|
||||
Close/logoff friends window/network or disable its animations.
|
||||
|
||||
* https://github.com/ValveSoftware/steam-for-linux/issues/7245#issuecomment-897417115
|
7
gh-pages-travis/.travis.yml
Normal file
7
gh-pages-travis/.travis.yml
Normal file
@ -0,0 +1,7 @@
|
||||
language: ruby
|
||||
sudo: false
|
||||
script: "bundle exec jekyll build"
|
||||
notifications:
|
||||
email: false
|
||||
matrix:
|
||||
fast_finish: true
|
7
gh-pages-travis/Gemfile
Normal file
7
gh-pages-travis/Gemfile
Normal file
@ -0,0 +1,7 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'github-pages'
|
||||
gem 'jekyll-mentions'
|
||||
gem 'jemoji'
|
||||
gem 'jekyll-redirect-from'
|
||||
gem 'jekyll-sitemap'
|
11
gh-pages-travis/README.md
Normal file
11
gh-pages-travis/README.md
Normal file
@ -0,0 +1,11 @@
|
||||
## Files to enable GH-pages supported plugins at GitHub.
|
||||
|
||||
For my **personal** copy-pasting, **don't complain to me** if something
|
||||
goes wrong if you copy-paste this.
|
||||
|
||||
```
|
||||
rm .nojekyll
|
||||
curl -LO https://github.com/Mikaela/gist/raw/master/gh-pages-travis/.travis.yml
|
||||
curl -LO https://github.com/Mikaela/gist/raw/master/gh-pages-travis/Gemfile
|
||||
curl -LO https://github.com/Mikaela/gist/raw/master/gh-pages-travis/_config.yml
|
||||
```
|
7
gh-pages-travis/_config.yml
Normal file
7
gh-pages-travis/_config.yml
Normal file
@ -0,0 +1,7 @@
|
||||
gems:
|
||||
- jekyll-mentions
|
||||
- jemoji
|
||||
- jekyll-redirect-from
|
||||
- jekyll-sitemap
|
||||
sitemap:
|
||||
file: "/sitemap.xml"
|
@ -1,17 +0,0 @@
|
||||
# Random git files
|
||||
|
||||
* `gitignore` - `.gitignore` templates I may or may not use
|
||||
* `etc/gitconfig` - a `/etc/gitconfig` for accepting signed pushes
|
||||
|
||||
## Tracking GitHub pull requests with `git`
|
||||
|
||||
```bash
|
||||
git config --add remote.GITHUB.fetch '+refs/pull/*/head:refs/remotes/GITHUB/pr/*'
|
||||
```
|
||||
|
||||
Replace `GITHUB` with the `git remote` name. I have picked this up from a
|
||||
dead `git.io` link.
|
||||
|
||||
* TODO: Figure out if this also works for GitLab or what is the GitLab version?
|
||||
Gitea too.
|
||||
* https://gitea.blesmrt.net/mikaela/gist/issues/39
|
@ -1,8 +0,0 @@
|
||||
This `/etc/gitconfig` currently just "documents" how to enable signed git
|
||||
pushes, however it requires a recent git version on the server too to allow
|
||||
SSH.
|
||||
|
||||
Client-side: `git config --global push.gpgSign if-asked` (to not die when
|
||||
server doesn't support it)
|
||||
|
||||
Source: https://people.kernel.org/monsieuricon/signed-git-pushes via https://github.com/go-gitea/gitea/issues/13454
|
@ -1,3 +0,0 @@
|
||||
[receive]
|
||||
advertisePushOptions = true
|
||||
certNonceSeed = "<uniquerandomstring>"
|
@ -1 +0,0 @@
|
||||
../irc/matterbridge
|
Loading…
Reference in New Issue
Block a user