mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
added other installs
This commit is contained in:
parent
30788f5b3d
commit
62aaae192d
4 changed files with 53 additions and 3 deletions
|
@ -3,8 +3,8 @@ audio_device_state:1:My HTTP Stream
|
|||
audio_device_state:1:mpd
|
||||
audio_device_state:1:Visualizer feed
|
||||
state: play
|
||||
current: 527
|
||||
time: 23.199000
|
||||
current: 503
|
||||
time: 120.047000
|
||||
random: 1
|
||||
repeat: 1
|
||||
single: 0
|
||||
|
|
Binary file not shown.
|
@ -10,6 +10,7 @@ save () {
|
|||
|
||||
cp -r "$HOME/.scripts" scripts
|
||||
|
||||
cp $HOME/.profile profile
|
||||
cp $HOME/.bashrc bashrc
|
||||
cp $HOME/.bash_aliases bash_aliases
|
||||
cp $HOME/.Xdefaults Xdefaults
|
||||
|
@ -35,6 +36,7 @@ load () {
|
|||
|
||||
cp Xdefaults $HOME/.Xdefaults
|
||||
cp xinitrc $HOME/.xinitrc
|
||||
cp profile $HOME/.profile
|
||||
|
||||
cp -r fonts $HOME/.fonts
|
||||
|
||||
|
@ -47,7 +49,9 @@ load () {
|
|||
|
||||
install () {
|
||||
PKG="yay -S "
|
||||
$PKG bspwm rofi cava neofetch mpd mpv ncmpcpp vim sxhkd polybar picom rofi
|
||||
$PKG xorg xorg-xinit pulseaudio
|
||||
$PKG bspwm cava neofetch mpd mpv ncmpcpp vim sxhkd polybar picom rofi urxvt
|
||||
ln -s /usr/bin/rofi /usr/bin/dmenu
|
||||
}
|
||||
|
||||
case $1 in
|
||||
|
|
46
profile
Normal file
46
profile
Normal file
|
@ -0,0 +1,46 @@
|
|||
# ~/.profile: executed by the command interpreter for login shells.
|
||||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||
# exists.
|
||||
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||
# the files are located in the bash-doc package.
|
||||
|
||||
# the default umask is set in /etc/profile; for setting the umask
|
||||
# for ssh logins, install and configure the libpam-umask package.
|
||||
#umask 022
|
||||
|
||||
# if running bash
|
||||
if [ -n "$BASH_VERSION" ]; then
|
||||
# include .bashrc if it exists
|
||||
if [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/.local/bin" ] ; then
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
fi
|
||||
|
||||
|
||||
if [ -d "$HOME/.scripts" ] ; then
|
||||
PATH="$HOME/.scripts:$PATH"
|
||||
fi
|
||||
|
||||
#export LC_ALL="C"
|
||||
#export TERMINAL="konsole --hide-menubar --profile qtile"
|
||||
alias editor=vim
|
||||
export TERMINAL="urxvt"
|
||||
export BROWSER="/usr/bin/chromium"
|
||||
export FILE_MANAGER="/usr/bin/thunar"
|
||||
export EMAIL_CLIENT="/usr/bin/thunderbird"
|
||||
export BLOG_DIR="/home/david/docs/proj/blog"
|
||||
export EDITOR="/usr/bin/vim"
|
||||
|
||||
export ANDROID_SDK_ROOT=/opt/android-sdk
|
||||
[[ $(fgconsole 2>/dev/null) == 1 ]] && exec startx -- vt1 &> /dev/null
|
||||
|
Loading…
Reference in a new issue