aspe:keyoxide.org:6WTOOTGFUYPF774R6XZEBBZT7E
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
# Beware! This file is rewritten by htop when settings are changed in the interface. | |
# The parser is also very primitive, and not human-friendly. | |
fields=0 48 17 18 49 2 46 47 1 | |
sort_key=46 | |
sort_direction=1 | |
hide_threads=0 | |
hide_kernel_threads=1 | |
hide_userland_threads=0 | |
shadow_other_users=0 | |
show_thread_names=0 |
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
# Maintainer: Iru Cai <[email protected]> | |
# Maintainer: Alexander Hunziker <[email protected]> | |
# Contributor: Alessio Biancalana <[email protected]> | |
# Edited by Ian Huang to install alongside gimp stable | |
pkgname=gimp-git | |
epoch=1 | |
pkgver=2.10.2.601.g0ff95b66b7 | |
pkgrel=1 |
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
RUN_SCRIPT_PATH=$HOME/gimp-git/run | |
post_install() { | |
cat > $RUN_SCRIPT_PATH <<-EOF | |
#!/bin/sh | |
# update as necessary | |
DIR_VERSION=2.99 | |
EOF | |
cat >> $RUN_SCRIPT_PATH <<-'EOF' |
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
#!/bin/sh | |
# pushes all dotfiles and scripts to gist | |
# uses https://github.com/defunkt/gist | |
#TODO: add parameters 'n stuff | |
# check if gist is installed | |
if ! type "gist" > /dev/null; then | |
echo "Gist isn't installed! https://github.com/defunkt/gist" | |
exit 1 |
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
" load defaults | |
source /usr/share/vim/vimfiles/archlinux.vim | |
:filetype plugin on | |
:syntax on | |
" Set block cursor on start. | |
autocmd VimEnter * silent !echo -ne "\e[2 q" | |
" Set IBeam shape in insert mode, underline shape in replace mode and block shape after exiting insert mode. |
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
#!/bin/sh - | |
# Clear SSD's Blender temp folder. | |
# Could be done by following https://wiki.archlinux.org/index.php/Systemd/User#Temporary_files, | |
# but that wouldn't work with trash support. | |
trashdir="/home/imyxh/.local/share/Trash/files" | |
for i in /mnt/ssd/blender/temp/* | |
do | |
mkdir -p $trashdir/blender-temp; | |
mv "$i" $trashdir/blender-temp; |
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
#!/bin/bash | |
# | |
# This file echoes a bunch of color codes to the | |
# terminal to demonstrate what's available. Each | |
# line is the color code of one forground color, | |
# out of 17 (default + 16 escapes), followed by a | |
# test use of that color on all nine background | |
# colors (default + 8 escapes). | |
# |
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
# ls | |
alias ls='ls --color=auto' | |
alias l.='ls -d .* --color=auto' | |
alias lla='ls -alF --group-directories-first --color=always' | |
alias ll='ls -l --group-directories-first --color=always' | |
alias la='ls -A --group-directories-first --color=always' | |
alias l='ls -CF --group-directories-first --color=always' | |
alias llg='ls -alF --group-directories-first --color=always|grep' | |
alias llm='ls -alF --group-directories-first --color=always|more' | |
alias lll='ls -alF --group-directories-first --color=always|more' |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/home/imyxh/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="imyxh" |
NewerOlder