From 990aed9089ac24bdd0e63da47eac0e68b4afc863 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Hendrik=20J=C3=A4ger?= Date: Fri, 20 Sep 2024 14:00:03 +0200 Subject: [PATCH] add function for starting a specific chromium profile --- .zsh_functions/,chromprof | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .zsh_functions/,chromprof diff --git a/.zsh_functions/,chromprof b/.zsh_functions/,chromprof new file mode 100644 index 0000000..cc8a81d --- /dev/null +++ b/.zsh_functions/,chromprof @@ -0,0 +1,3 @@ +profile_name=$1 +mkdir -p ${HOME}/.config/chromium_profile_${profile_name} +chromium --user-data-dir=${HOME}/.config/chromium_profile_${profile_name} -- 2.39.5