Bruno BELANYI
2b43844029
I found the base script somewhere on GitHub. It looks like a good basis to transform it into a true bluetooth interface which could be launched directly from demnu. To that end I wrote a little '.desktop' file to add it to `dmenu-desktop` entries.
33 lines
608 B
Bash
Executable file
33 lines
608 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
# Configuration files
|
|
stow -t ~ X
|
|
stow -t ~ bash
|
|
stow -t ~ dunst
|
|
stow -t ~ emacs
|
|
stow -t ~ git
|
|
stow -t ~ i3
|
|
stow -t ~ i3blocks
|
|
stow -t ~ ranger
|
|
stow -t ~ redshift
|
|
stow -t ~ termite
|
|
stow -t ~ tridactyl
|
|
stow -t ~ vim
|
|
stow -t ~ zsh
|
|
|
|
# Create the directory if needed
|
|
mkdir -p ~/.scripts
|
|
# Scripts must be in their own directory
|
|
stow -t ~/.scripts scripts/
|
|
|
|
# Common shell files
|
|
stow -t ~ shell/
|
|
|
|
# Wallpapers
|
|
stow -t ~ wallpapers/
|
|
|
|
# Create the directory if needed
|
|
mkdir -p ~/.local/share/applications
|
|
# Symlink the '.desktop' files (btmenu needs one)
|
|
stow -t ~/.local/share/applications desktop
|