diff options
-rw-r--r-- | etc/portage/make.conf | 1 | ||||
-rw-r--r-- | etc/portage/package.accept_keywords/conf | 1 | ||||
-rw-r--r-- | root/.bash_aliases | 9 |
3 files changed, 11 insertions, 0 deletions
diff --git a/etc/portage/make.conf b/etc/portage/make.conf index 624a3da..49e9516 100644 --- a/etc/portage/make.conf +++ b/etc/portage/make.conf @@ -62,6 +62,7 @@ USE="$USE vhost-net qemu parted" # za qemu / libvirt USE="$USE qml positioning quick" # za freecad USE="$USE gstreamer" # za dino USE="$USE jack-sdk sound-server elogind" # za pipewire +USE="$USE v4l" # za motion CALLIGRA_FEATURES="stage words sheets" PALEMOON_ENABLE_UNSUPPORTED_COMPILERS=1 # uradno gcc 11 ni podprt diff --git a/etc/portage/package.accept_keywords/conf b/etc/portage/package.accept_keywords/conf index 9e14815..0944e06 100644 --- a/etc/portage/package.accept_keywords/conf +++ b/etc/portage/package.accept_keywords/conf @@ -52,3 +52,4 @@ app-misc/qlcplus ** net-analyzer/masscan ~* dev-util/android-studio ~* net-vpn/iodine ~* +app-emulation/libguestfs ~* diff --git a/root/.bash_aliases b/root/.bash_aliases index 9d1b336..07114ac 100644 --- a/root/.bash_aliases +++ b/root/.bash_aliases @@ -1,3 +1,12 @@ +function fancyindex_files () { + for i in `curl -k $1 | grep link | grep -v '<td class="size">-</td>' | cut -d\" -f 4 ` + do + echo $2$i + done +} +function fancyindex_play () { + mpv `fancyindex_files $1 $1/` +} export CT_ALLOW_BUILD_AS_ROOT_SURE=1 function register () { n=`curl -s https://www.register.si | grep nonce | head -n 1 | cut -d\" -f8` |