1
0
Fork 0

reorganized setup scripts

This commit is contained in:
Kim, Jimin 2022-02-02 21:55:10 +09:00
parent 9fa51d4b6b
commit c03f60cc1f
30 changed files with 3 additions and 24 deletions

View file

@ -209,11 +209,6 @@ setup_middleclickpaste() {
# todo: make it autostart
}
setup_mystiq() {
# video converter
package_install mystiq
}
setup_pacman() {
# enable multilib, color, parallel download, and total download in /etc/pacman.conf
:
@ -245,11 +240,6 @@ setup_pavucontrol() {
package_install pavucontrol
}
setup_pip() {
# package installer for python
package_install python-pip
}
setup_pomky() {
install ./home/pomp/.local/bin/pomky ~/.local/bin/
install ./home/pomp/.config/autostart/pomky.desktop ~/.config/autostart/

View file

@ -0,0 +1 @@
from . import *

View file

@ -0,0 +1 @@
from . import *

View file

@ -1,14 +0,0 @@
from .. import deno, dotnet, go, jdk, rust, vscodiumm
name = "dev"
def setup():
"""development related stuff"""
deno.setup()
dotnet.setup()
go.setup()
jdk.setup()
rust.setup()
vscodium.setup()

View file

@ -0,0 +1 @@
from . import *