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 IS DEPRECATED, USE THE FILE BELOW | |
-- should get bufnr from autocmd or something | |
-- conceal only accepts one character | |
-- thanks to u/Rafat913 for many suggestions and tips | |
local namespace = vim.api.nvim_create_namespace("class_conceal") | |
local group = vim.api.nvim_create_augroup("class_conceal", { clear = true }) | |
local conceal_html_class = function(bufnr) |
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
# Following https://www.dev47apps.com/droidcam/linux/ | |
cd /tmp/ | |
wget -O droidcam_latest.zip https://files.dev47apps.net/linux/droidcam_1.8.2.zip | |
unzip droidcam_latest.zip -d droidcam | |
cd droidcam && sudo ./install-client | |
sudo dnf install libappindicator-gtk3 kernel-devel gcc make android-tools | |
sudo ./install-video |
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
git clone --bare [email protected]:mactep/dotfiles.git $HOME/.dotfiles | |
function dotfiles { | |
git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME $@ | |
} | |
dotfiles checkout | |
dotfiles config status.showUntrackedFiles no | |
dotfiles config core.worktree $HOME # to help vim-fugitive work correctly | |
echo "alias dotfiles='git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'" >> ~/.bashrc |
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
javascript:(function(){setInterval(function() { if (!document.querySelector('button.thumbs-up').classList.contains('active')) { document.querySelector('button.thumbs-up').click(); } }, 30000);})(); |