Browse Source

Fixed Config file location according to git bare

main
Yigit Colakoglu 4 years ago
parent
commit
db3f20196a
10 changed files with 10 additions and 10 deletions
  1. +1
    -1
      .config/X11/xinitrc
  2. +1
    -1
      .local/bin/firefox-sync
  3. +1
    -1
      .local/bin/status-bar/battery
  4. +1
    -1
      .local/bin/status-bar/cpu-temp
  5. +1
    -1
      .local/bin/status-bar/mconnect
  6. +1
    -1
      .local/bin/status-bar/network
  7. +1
    -1
      .local/bin/status-bar/redshift
  8. +1
    -1
      .local/bin/status-bar/weather
  9. +1
    -1
      README.md
  10. +1
    -1
      install.sh

+ 1
- 1
.config/X11/xinitrc View File

@ -10,7 +10,7 @@ echo "$DBUS_SESSION_BUS_ADDRESS" > /tmp/bus-session
rm -rf $XDG_RUNTIME_DIR/day_cache
source ~/.config.env
source ~/.config/config.env
gpgconf --dry-run --create-socketdir
#eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)


+ 1
- 1
.local/bin/firefox-sync View File

@ -6,7 +6,7 @@ if [ ! "$BROWSER" = "firefox" ]; then
exit 0
fi
source $HOME/.config.env
source $HOME/.config/config.env
static=static-$FIREFOX_PROFILE
link=$FIREFOX_PROFILE


+ 1
- 1
.local/bin/status-bar/battery View File

@ -1,6 +1,6 @@
#!/bin/bash
source ~/.config.env
source ~/.config/config.env
ramp10=
ramp20=


+ 1
- 1
.local/bin/status-bar/cpu-temp View File

@ -1,6 +1,6 @@
#!/bin/bash
source ~/.config.env
source ~/.config/config.env
temp=$(sed 's/[0-9][0-9][0-9]$/°C/' $TEMP_ZONE)
icon=


+ 1
- 1
.local/bin/status-bar/mconnect View File

@ -1,6 +1,6 @@
#!/bin/bash
source ~/.config.env
source ~/.config/config.env
if [ ! "$MCONNECT" = true ] ; then
echo "^c#EBCB8B^ ^d^"


+ 1
- 1
.local/bin/status-bar/network View File

@ -1,6 +1,6 @@
#!/bin/bash
source ~/.config.env
source ~/.config/config.env
is_eth_used=$(cat /sys/class/net/$ETH_IT/carrier)
is_wlan_used=$(cat /sys/class/net/$WLAN_IT/carrier)


+ 1
- 1
.local/bin/status-bar/redshift View File

@ -1,6 +1,6 @@
#!/bin/bash
source $HOME/.config.env
source $HOME/.config/config.env
pid=$(pidof redshift)


+ 1
- 1
.local/bin/status-bar/weather View File

@ -1,6 +1,6 @@
#!/bin/bash
source ~/.config.env
source ~/.config/config.env
weatherreport="${XDG_CACHE_HOME:-$HOME/.local/share}/weatherreport"
weatherreportjson="${XDG_CACHE_HOME:-$HOME/.local/share}/weatherreportjson"


+ 1
- 1
README.md View File

@ -28,7 +28,7 @@ git clone --depth 4 --recurse-submodules https://github.com/theFr1nge/dotfiles.g
This will download everything you need. After that, I have a list of all the packages I have installed on my machine in the directory arch-setup/.
If you have any problems regarding the setup, you should first check whether you have missing packages.
After the clone process, it is pretty straightforward, you can run the `install.sh` script which creates necessary symlinks.
You might want to edit your crontab and the ~/.config.env.
You might want to edit your crontab and the ~/.config/config.env.
## Some eye candy
![Workspace 1](https://minio.yigitcolakoglu.com/screenshots/rice/neofetch.png)


+ 1
- 1
install.sh View File

@ -82,7 +82,7 @@ chmod +x $HOME/.zshenv
mvie ~/.profile ~/.dotfiles_backup/profile
ln -sf ~/.dotfiles/profile ~/.profile
cp ~/.dotfiles/config.env.def ~/.config.env
cp ~/.dotfiles/config.env.def ~/.config/config.env
# Downloading assets
##Fonts


Loading…
Cancel
Save