1
0
Fork 0

updated pomky binary and removed conky setup

This commit is contained in:
Kim, Jimin 2021-12-31 16:07:04 +09:00
parent 9662658e33
commit f79eb2e78d
3 changed files with 8 additions and 16 deletions

View file

@ -138,7 +138,7 @@ https://github.com/developomp/pomky
this [file](./home/pomp/.local/bin/pomky) right here this [file](./home/pomp/.local/bin/pomky) right here
commit: b0c34f6 commit: aecec82
## Future ## Future

Binary file not shown.

View file

@ -116,19 +116,6 @@ setup_btop() {
package_install btop package_install btop
} }
setup_conky() {
cp -r ./home/pomp/.conky/ ~/
install ./home/pomp/.config/autostart/conky.desktop ~/.config/autostart/
# vnstat: network traffic statistics
package_install \
conky \
vnstat
sudo systemctl enable vnstat
sudo systemctl start vnstat
}
setup_cpu_undervolting() { setup_cpu_undervolting() {
# intel CPU undervolting for less heat and power consumption # intel CPU undervolting for less heat and power consumption
# https://wiki.archlinux.org/index.php/Undervolting_CPU # https://wiki.archlinux.org/index.php/Undervolting_CPU
@ -631,6 +618,11 @@ setup_piper() {
package_install piper package_install piper
} }
setup_pomky() {
install ./home/pomp/.local/bin/pomky ~/.local/bin/
install ./home/pomp/.config/autostart/pomky.desktop ~/.config/autostart/
}
setup_rust() { setup_rust() {
package_install \ package_install \
rust \ rust \
@ -874,7 +866,6 @@ options=(
"blender" "" off "blender" "" off
"brave" "" off "brave" "" off
"btop" "" off "btop" "" off
"conky" "" off
"cpu_undervolting" "" off "cpu_undervolting" "" off
"deno" "" off "deno" "" off
"discord" "" off "discord" "" off
@ -908,6 +899,7 @@ options=(
"pamac" "" off "pamac" "" off
"pip" "" off "pip" "" off
"piper" "" off "piper" "" off
"pomky" "" off
"rust" "" off "rust" "" off
"shfmt" "" off "shfmt" "" off
"steam" "" off "steam" "" off
@ -935,7 +927,6 @@ for choice in $choices; do
"brave") setup_brave ;; "brave") setup_brave ;;
"btop") setup_btop ;; "btop") setup_btop ;;
"backup") backup ;; "backup") backup ;;
"conky") setup_conky ;;
"cpu_undervolting") setup_cpu_undervolting ;; "cpu_undervolting") setup_cpu_undervolting ;;
"deno") setup_deno ;; "deno") setup_deno ;;
"discord") setup_discord ;; "discord") setup_discord ;;
@ -969,6 +960,7 @@ for choice in $choices; do
"pamac") setup_pamac ;; "pamac") setup_pamac ;;
"pip") setup_pip ;; "pip") setup_pip ;;
"piper") setup_piper ;; "piper") setup_piper ;;
"pomky") setup_pomky ;;
"rust") setup_rust ;; "rust") setup_rust ;;
"shfmt") setup_shfmt ;; "shfmt") setup_shfmt ;;
"steam") setup_steam ;; "steam") setup_steam ;;