Skip to content

Instantly share code, notes, and snippets.

View jorgemrisco's full-sized avatar
🏠
Working from home

Jorge Marcelo Risco jorgemrisco

🏠
Working from home
View GitHub Profile
@jorgemrisco
jorgemrisco / rc.xml
Created August 7, 2021 19:32
My openbox RC configs
<?xml version="1.0"?>
<openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude">
<resistance>
<strength>50</strength>
<screen_edge_strength>100</screen_edge_strength>
</resistance>
<focus>
<focusNew>yes</focusNew>
<followMouse>no</followMouse>
<focusLast>yes</focusLast>
@jorgemrisco
jorgemrisco / tint2rc
Created August 7, 2021 19:24
my tint2rc configs (depends on https://github.com/nwg-piotr/t2ec)
#---- Generated by tint2conf 5bb4 ----
# See https://gitlab.com/o9000/tint2/wikis/Configure for
# full documentation of the configuration options.
#-------------------------------------
# Gradients
#-------------------------------------
# Backgrounds
# Background 1: Default task, Iconified task, Inactive desktop name
rounded = 0
border_width = 2
@jorgemrisco
jorgemrisco / handbrake.sh
Last active August 7, 2021 19:18
Handbrake script to convert all videos inside a folder (must have `HandBrakeCLI` installed)
#!/bin/bash
SRC="$1"
DEST="$2"
DEST_EXT=mp4
HANDBRAKE_CLI=HandBrakeCLI
PRESET="Chromecast 1080p30 Surround"
for FILE in "$SRC"/*
do