Compare commits
No commits in common. "6667309c1a2d19dbe77d4e938b5aec320782376d" and "fe89438ad200ed9187bfef0b3cf5cdf3aec6618a" have entirely different histories.
6667309c1a
...
fe89438ad2
|
@ -1 +0,0 @@
|
|||
app_cache/
|
|
@ -1,18 +0,0 @@
|
|||
https://f-droid.org/repo/com.termux_1020.apk
|
||||
https://f-droid.org/repo/com.termux.api_51.apk
|
||||
https://f-droid.org/repo/com.termux.widget_13.apk
|
||||
https://f-droid.org/repo/com.coboltforge.dontmind.multivnc_101.apk
|
||||
https://f-droid.org/repo/com.kylecorry.trail_sense_124.apk
|
||||
https://f-droid.org/repo/org.ligi.survivalmanual_428.apk
|
||||
https://github.com/bitwarden/android/releases/download/v2024.4.0/com.x8bit.bitwarden.apk
|
||||
https://f-droid.org/repo/at.bitfire.icsdroid_81.apk
|
||||
https://f-droid.org/repo/ws.xsoh.etar_47.apk
|
||||
https://f-droid.org/repo/at.bitfire.davdroid_404030200.apk
|
||||
https://f-droid.org/repo/org.oxycblt.auxio_53.apk
|
||||
https://f-droid.org/repo/de.danoeh.antennapod_3050095.apk
|
||||
https://f-droid.org/repo/eu.faircode.email_2241.apk
|
||||
https://f-droid.org/repo/org.koreader.launcher.fdroid_105232.apk
|
||||
https://f-droid.org/repo/at.techbee.jtx_209010003.apk
|
||||
https://f-droid.org/repo/mn.tck.semitone_4.apk
|
||||
https://f-droid.org/repo/de.moekadu.tuner_38.apk
|
||||
https://f-droid.org/repo/io.github.domi04151309.home_1100.apk
|
|
@ -1,6 +0,0 @@
|
|||
mkdir -p app_cache
|
||||
for i in $(cat apps); do
|
||||
output_name=$(echo $i | awk -F'/' '{print $NF}')
|
||||
curl "$i" --max-redirs 999 -L -C - -o "app_cache/$output_name"
|
||||
adb install "app_cache/$output_name"
|
||||
done
|
|
@ -38,6 +38,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
for i in $(ls $src/); do
|
||||
cp $src/$i $out/bin
|
||||
ln -sf $out/bin/tmenu_run $out/bin/regenerate
|
||||
wrapProgram $out/bin/$i --prefix PATH : ${lib.makeBinPath [ sxhkd bash feh xrandr jq figlet curl fzy xkbset ytfzf sshuttle svkbd scrcpy xrectsel ffcast xmessage imagemagick ]}
|
||||
done
|
||||
'';
|
||||
|
|
|
@ -10,8 +10,8 @@ tmenu_path () {
|
|||
}
|
||||
|
||||
export IS_RUNNING_IN_TMENU="yes"
|
||||
choice=$(echo regenerate | cat $HOME/.local/share/tmenu_cache - | tmenu)
|
||||
if [ "$choice" = "regenerate" ]; then
|
||||
choice=$(cat $HOME/.local/share/tmenu_cache | tmenu)
|
||||
if [ -z "$choice" ]; then
|
||||
mkdir -p $HOME/.local/share
|
||||
tmenu_path | sort > $HOME/.local/share/tmenu_cache
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue