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
urxvt.transparent: false | |
urxvt.shading: 15 | |
URxvt.cursorBlink: 1 | |
URxvt.termName: rxvt-256color | |
URxvt.font: xft:Fira Mono:pixelsize=15,style=regular | |
URxvt.boldFont: xft:Fira Mono:pixelsize=15,style=bold | |
URxvt.italicFont: xft:Fira Mono:pixelsize=15,style=bold | |
URxvt.boldItalicFont: xft:Fira Mono:pixelsize=15,style=bold | |
URxvt.reverseVideo: True | |
URxvt.letterSpace: -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
SOFTWARE LIST: | |
+audacity | |
+blender | |
+compton-tryone-git (aur) | |
+ctags | |
+emacs | |
+feh | |
+inkscape | |
+rclone | |
+kdenlive |
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
# You always need to import ranger.api.commands here to get the Command class: | |
from ranger.api.commands import * | |
# My additional commands | |
class terminal(Command): | |
""":terminal | |
Open new tmux split in the current directory. | |
""" | |
def execute(self): |
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
MAINTENANCE | |
[x] Install System and Application Patches/Updates | |
[x] $ sudo apt-get update && sudo apt-get dist-upgrade | |
[x] Free up Disk Space (Be Extremely Careful) | |
[x] $ sudo apt-get --purge autoremove | |
[x] $ sudo apt-get clean | |
[x] $ du -sh ~/.cache/thumbnails | |
[x] $ rm -rf ~/.cache/thumbnails/* | |
[x] Remove Junk Manually (Try Baobab) & Backup to Google Drive | |
[x] Google Drive |
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
# batch convert | |
for i in *.mp4; do ffmpeg -i "$i" "${i%.mp4}.webm"; done | |
# convert from one format to another | |
ffmpeg -i input.mp3 output.wav | |
# convert from one video format to another ("-qscale" value are 0-10, 0 is the best) | |
ffmpeg -i input.mp4 -qscale 0 output.webm | |
# convert video to audio (sometimes this one is better than the custom one below) |
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
pacman: sudo pacman -Syu PACKAGENAME # install (and update package list) | |
sudo pacman -S PACKAGENAME # install | |
pacman -Ss PACKAGENAME # search | |
pacman -Si PACKAGENAME # info about package | |
pacman -Qs PACKAGENAME # search installed package | |
pacman -Qi PACKAGENAME # info about installed package | |
pacman -Ql PACKAGENAME # list all installed package | |
sudo pacman -R PACKAGENAME # normal remove | |
sudo pacman -Rsn PACKAGENAME # remove package, dependencies, and backup configuration files | |
pacman -Qdt |
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 | |
# | |
# ANSI color scheme script featuring Space Invaders | |
# | |
# Original: http://crunchbanglinux.org/forums/post/126921/#p126921 | |
# Modified by lolilolicon | |
# | |
f=3 b=4 | |
for j in f b; do |
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
trash "$(audtool current-song-filename)" | |
audtool --playlist-delete $(audtool --playlist-position) | |
audtool --playback-play |
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 | |
# Tom Hale, 2016. MIT Licence. | |
# Print out 256 colours, with each number printed in its corresponding colour | |
# See http://askubuntu.com/questions/821157/print-a-256-color-test-pattern-in-the-terminal/821163#821163 | |
set -eu # Fail on errors or undeclared variables | |
printable_colours=256 |
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
* Now talking on #krita | |
* Topic for #krita is: repo: https://phabricator.kde.org/source/krita/. Unstable branch: master. Stable branch: krita/3.3 | Current stable release: 3.3.2 | Please wait around after asking a question | off-topic chat: ##krita-chat | This is not a company support channel, it's a chat channel for developers and users of Krita | |
* Topic for #krita set by [email protected] at Fri Nov 3 16:08:25 2017 | |
<SaberArthur> hello, my xorg crash when I use krita, it never happened before, how to fix this? | |
<SaberArthur> is there any log I should attach? | |
<SaberArthur> https://pasteboard.co/GXS67KS.png | |
<SaberArthur> Xorg.0.log https://hastebin.com/raw/inalaxukol | |
<SaberArthur> dunno if this is relevant but here is syslog https://hastebin.com/raw/rizocibuho | |
<boud> SaberArthur: which version of Krita is that? | |
<SaberArthur> 3.3.1 |
NewerOlder