mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 10:00:27 +01:00
Compare commits
3 Commits
bbf4df0206
...
fe4c5bd146
| Author | SHA1 | Date | |
|---|---|---|---|
| fe4c5bd146 | |||
| 5fd30be988 | |||
| 1ec7d0a3da |
2
.config/environment.d/kde_plasma.conf
Normal file
2
.config/environment.d/kde_plasma.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
# https://www.reddit.com/r/linux_gaming/comments/1ohgzch/if_you_have_kde_65_you_def_want_to_into_enabling/
|
||||
KWIN_USE_OVERLAYS=1
|
||||
95
.local/share/konsole/diginaut.colorscheme
Normal file
95
.local/share/konsole/diginaut.colorscheme
Normal file
@@ -0,0 +1,95 @@
|
||||
[Background]
|
||||
Color=0,0,0
|
||||
|
||||
[BackgroundFaint]
|
||||
Color=0,0,1
|
||||
|
||||
[BackgroundIntense]
|
||||
Color=68,68,69
|
||||
|
||||
[Color0]
|
||||
Color=35,35,35
|
||||
|
||||
[Color0Faint]
|
||||
Color=35,35,35
|
||||
|
||||
[Color0Intense]
|
||||
Color=68,68,68
|
||||
|
||||
[Color1]
|
||||
Color=255,0,15
|
||||
|
||||
[Color1Faint]
|
||||
Color=255,0,15
|
||||
|
||||
[Color1Intense]
|
||||
Color=255,39,64
|
||||
|
||||
[Color2]
|
||||
Color=140,225,11
|
||||
|
||||
[Color2Faint]
|
||||
Color=140,225,11
|
||||
|
||||
[Color2Intense]
|
||||
Color=171,225,91
|
||||
|
||||
[Color3]
|
||||
Color=255,185,0
|
||||
|
||||
[Color3Faint]
|
||||
Color=255,185,0
|
||||
|
||||
[Color3Intense]
|
||||
Color=255,210,66
|
||||
|
||||
[Color4]
|
||||
Color=0,141,248
|
||||
|
||||
[Color4Faint]
|
||||
Color=0,141,248
|
||||
|
||||
[Color4Intense]
|
||||
Color=0,146,255
|
||||
|
||||
[Color5]
|
||||
Color=109,67,166
|
||||
|
||||
[Color5Faint]
|
||||
Color=109,67,166
|
||||
|
||||
[Color5Intense]
|
||||
Color=154,95,235
|
||||
|
||||
[Color6]
|
||||
Color=0,216,235
|
||||
|
||||
[Color6Faint]
|
||||
Color=0,216,235
|
||||
|
||||
[Color6Intense]
|
||||
Color=103,255,240
|
||||
|
||||
[Color7]
|
||||
Color=255,255,255
|
||||
|
||||
[Color7Faint]
|
||||
Color=255,255,255
|
||||
|
||||
[Color7Intense]
|
||||
Color=255,255,255
|
||||
|
||||
[Foreground]
|
||||
Color=255,250,244
|
||||
|
||||
[ForegroundFaint]
|
||||
Color=255,250,244
|
||||
|
||||
[ForegroundIntense]
|
||||
Color=255,250,244
|
||||
|
||||
[General]
|
||||
Description=Diginaut
|
||||
#Opacity=0.93
|
||||
Wallpaper=
|
||||
|
||||
38
install.sh
38
install.sh
@@ -1,29 +1,6 @@
|
||||
#!/bin/bash
|
||||
# inspired by rrix' dotfiles
|
||||
|
||||
install_hg()
|
||||
{
|
||||
# Mercurial extensions
|
||||
touch "${HOME}/.dot_has_hg"
|
||||
HGDIR="${HOME}/workspace/application_addons/mercurial"
|
||||
mkdir -p $HGDIR
|
||||
cd $HGDIR || exit
|
||||
|
||||
for REPO in Mekk/mercurial_keyring sjl/hg-prompt durin42/hg-git yujiewu/hgflow
|
||||
do
|
||||
REPODIR="${REPO##*/}"
|
||||
echo $REPODIR
|
||||
if [ ! -d "$HGDIR/$REPODIR" ]; then
|
||||
hg clone http://bitbucket.org/$REPO
|
||||
#echo http://bitbucket.org/$REPO
|
||||
else
|
||||
cd $HGDIR/$REPODIR || exit
|
||||
#echo $HGDIR/$REPODIR
|
||||
hg pull -u
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
install_fish()
|
||||
{
|
||||
touch ~/.dot/.dot_has_fish
|
||||
@@ -102,21 +79,8 @@ if [ ! -d "${HOME}/.vim/autoload/plug.vim" ]; then
|
||||
vim
|
||||
fi
|
||||
|
||||
#if [ -e ~/.dot_has_hg ]; then
|
||||
# install_hg
|
||||
#elif [ ! -e ~/.dot_no_hg ]; then
|
||||
# echo
|
||||
# echo "Do you wish to install mercurial stuff?"
|
||||
# select yn in "Yes" "No"; do
|
||||
# case $yn in
|
||||
# Yes ) install_hg; break;;
|
||||
# No ) touch ~/.dot_no_hg; break;;
|
||||
# esac
|
||||
# done
|
||||
#fi
|
||||
|
||||
if [ -e ~/.dot/.dot_has_fish ]; then
|
||||
install_hg
|
||||
install_fish
|
||||
elif [ ! -e ~/.dot/.dot_no_fish ]; then
|
||||
echo
|
||||
echo "Do you wish to install fish shell configuration?"
|
||||
|
||||
Reference in New Issue
Block a user