diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2023-08-31 00:52:34 +0200 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2023-08-31 00:52:34 +0200 |
commit | e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29 (patch) | |
tree | 46f955d5fb882f9525c4a126014304e6cb866e77 | |
parent | cgitrc-hiliting (diff) | |
download | n-e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29.tar n-e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29.tar.gz n-e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29.tar.bz2 n-e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29.tar.lz n-e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29.tar.xz n-e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29.tar.zst n-e6695821cca90fd30fa0b1d5bb91f4fa7bfdfc29.zip |
-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` |