This file contains hidden or 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
| [Unit] | |
| Description=Server daemon for Terraria | |
| After=network.target | |
| [Service] | |
| WorkingDirectory=/storage/terrariaserver/ | |
| User=mirsella | |
| Type=forking | |
| # Default KillMode is 'control-group', which is typically desired. |
This file contains hidden or 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
| // ==UserScript== | |
| // @name auto reload | |
| // @namespace Violentmonkey Scripts | |
| // @match https://projects.intra.42.fr/projects/*/slots | |
| // @grant none | |
| // @version 1.0 | |
| // @author mirsella | |
| // @description 4/17/2023, 4:07:14 PM | |
| // ==/UserScript== |
This file contains hidden or 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
| #!/bin/bash | |
| export pkg='ntfs-3g pacman-contrib spectacle man man-pages youtube-music-bin yt-dlp inxi rclone unzip zip fuse2 tealdeer keepassxc wl-clipboard kdeconnect yakuake zen-browser-bin inetutils timeshift timeshift-autosnap ttf-jetbrains-mono-nerd fwupd fwupd-efi sbctl aspell aspell-en aspell-fr hunspell hunspell-en_US hunspell-fr wine bottles mcat-bin chromium imagemagick kwalletmanager android-tools' | |
| export pkg_dev='cmake python-pip nodejs npm pnpm github-cli jujutsu jq nodejs-neovim python-pynvim vimv kwalletcli-bin archlinuxcn/wezterm-git lazygit docker docker-compose mergiraf wild mold mergiraf biome prettier markdownlint-cli2 ueberzugpp ast-grep mermaid-cli tree-sitter-cli ueberzugpp tectonic fish zellij' | |
| export pkg_dotfiles='zsh nushell carapace-bin fish neovim fzf starship oh-my-posh gtrash-bin bat ouch fd ripgrep lsd chezmoi dust zoxide lazygit darkman chafa difftastic atuin git-delta graphviz' | |
| export XDG_CONFIG_HOME="$HOME/.config" | |
| export XDG_CACHE_HOME="$HOME/.cache" | |
| export XDG_DATA_HOME="$ |
This file contains hidden or 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
| 27/05/22+0 |
This file contains hidden or 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
| ex () | |
| { | |
| if [ -f $1 ] ; then | |
| case $1 in | |
| *.tar.bz2) tar xjf $1 ;; | |
| *.tar.gz) tar xzf $1 ;; | |
| *.bz2) bunzip2 $1 ;; | |
| *.rar) unrar x $1 ;; | |
| *.gz) gunzip $1 ;; | |
| *.tar) tar xf $1 ;; |