mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2025-01-10 04:12:38 +01:00
Compare commits
10 Commits
f383701f9e
...
15c93ccadd
Author | SHA1 | Date | |
---|---|---|---|
15c93ccadd | |||
9c21adc343 | |||
f5c56eb855 | |||
a737dae64c | |||
c761a465f4 | |||
ccb3ed96d8 | |||
c846c48412 | |||
c0affcb03f | |||
faa5064e51 | |||
88f0e80d82 |
@ -1 +0,0 @@
|
||||
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.
|
@ -1,3 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
cd /usr/local/MultiBit-*
|
||||
(java -jar /usr/local/MultiBit-*/multibit-exe.jar $1&)
|
@ -1,3 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
cd /usr/local/MultiDoge-*
|
||||
(java -jar /usr/local/MultiDoge-*/multidoge-exe.jar $1&)
|
@ -1,7 +0,0 @@
|
||||
#!/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
|
32
gayming/README.md
Normal file
32
gayming/README.md
Normal file
@ -0,0 +1,32 @@
|
||||
# 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
|
@ -1,7 +0,0 @@
|
||||
language: ruby
|
||||
sudo: false
|
||||
script: "bundle exec jekyll build"
|
||||
notifications:
|
||||
email: false
|
||||
matrix:
|
||||
fast_finish: true
|
@ -1,7 +0,0 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'github-pages'
|
||||
gem 'jekyll-mentions'
|
||||
gem 'jemoji'
|
||||
gem 'jekyll-redirect-from'
|
||||
gem 'jekyll-sitemap'
|
@ -1,11 +0,0 @@
|
||||
## 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
|
||||
```
|
@ -1,7 +0,0 @@
|
||||
gems:
|
||||
- jekyll-mentions
|
||||
- jemoji
|
||||
- jekyll-redirect-from
|
||||
- jekyll-sitemap
|
||||
sitemap:
|
||||
file: "/sitemap.xml"
|
17
git/README.md
Normal file
17
git/README.md
Normal file
@ -0,0 +1,17 @@
|
||||
# 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
|
8
git/etc/README.md
Normal file
8
git/etc/README.md
Normal file
@ -0,0 +1,8 @@
|
||||
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
|
3
git/etc/gitconfig
Normal file
3
git/etc/gitconfig
Normal file
@ -0,0 +1,3 @@
|
||||
[receive]
|
||||
advertisePushOptions = true
|
||||
certNonceSeed = "<uniquerandomstring>"
|
1
matrix/matterbridge
Symbolic link
1
matrix/matterbridge
Symbolic link
@ -0,0 +1 @@
|
||||
../irc/matterbridge
|
Loading…
Reference in New Issue
Block a user