Compare commits
2 Commits
cff7288c9e
...
e484405684
Author | SHA1 | Date | |
---|---|---|---|
e484405684 | |||
4d5abd5489 |
@ -19,6 +19,7 @@ An uppercase I looks like a 1, 3 from i3, and 8 because the song [We Are 138](ht
|
|||||||
- dex: [optional] Alternative method for auto starting applications.
|
- dex: [optional] Alternative method for auto starting applications.
|
||||||
- clipster: clipboard manager
|
- clipster: clipboard manager
|
||||||
- jq: for getting the current workspace
|
- jq: for getting the current workspace
|
||||||
|
- libcanberra: [optional]To play the desktop login sound.
|
||||||
- libnotify: For sending notifications
|
- libnotify: For sending notifications
|
||||||
- lxsession: For policykit authentication agent.
|
- lxsession: For policykit authentication agent.
|
||||||
- notification-daemon: To handle notifications
|
- notification-daemon: To handle notifications
|
||||||
@ -26,7 +27,7 @@ An uppercase I looks like a 1, 3 from i3, and 8 because the song [We Are 138](ht
|
|||||||
- pamixer: for the mute-unmute script
|
- pamixer: for the mute-unmute script
|
||||||
- playerctl: music controls
|
- playerctl: music controls
|
||||||
- python-i3ipc: for sounds etc.
|
- python-i3ipc: for sounds etc.
|
||||||
- remind: [optional] for reminder notifications, Requires notify-daemon and notify-send for automatic reminders.
|
- remind: [optional]For reminder notifications, Requires notify-daemon and notify-send for automatic reminders.
|
||||||
- sgtk-menu: for applications menu
|
- sgtk-menu: for applications menu
|
||||||
- sox: for sounds.
|
- sox: for sounds.
|
||||||
- transfersh: [optional] for file sharing GUI
|
- transfersh: [optional] for file sharing GUI
|
||||||
|
8
i38.sh
8
i38.sh
@ -366,6 +366,11 @@ brlapi=1
|
|||||||
brlapi=$(yesno "Do you want to use a braille display with Orca?")
|
brlapi=$(yesno "Do you want to use a braille display with Orca?")
|
||||||
sounds=1
|
sounds=1
|
||||||
sounds=$(yesno "Do you want window event sounds?")
|
sounds=$(yesno "Do you want window event sounds?")
|
||||||
|
# Play Login Sound
|
||||||
|
loginSound=1
|
||||||
|
if command -v canberra-gtk-play &> /dev/null ; then
|
||||||
|
export loginSound=$(yesno "Would you like to play the default desktop-login sound according to your GTK sound theme upon login?")
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -d "${i3Path}" ]]; then
|
if [[ -d "${i3Path}" ]]; then
|
||||||
yesno "This will replace your existing configuration at ${i3Path}. Do you want to continue?" || exit 0
|
yesno "This will replace your existing configuration at ${i3Path}. Do you want to continue?" || exit 0
|
||||||
@ -602,6 +607,9 @@ cat << EOF >> ${i3Path}/config
|
|||||||
$(if [[ $sounds -eq 0 ]]; then
|
$(if [[ $sounds -eq 0 ]]; then
|
||||||
echo "exec_always --no-startup-id ${i3Path}/scripts/sound.py"
|
echo "exec_always --no-startup-id ${i3Path}/scripts/sound.py"
|
||||||
fi
|
fi
|
||||||
|
if [[ $loginSound -eq 0 ]]; then
|
||||||
|
echo 'exec --no-startup-id canberra-gtk-play -i desktop-login'
|
||||||
|
fi
|
||||||
if [[ $brlapi -eq 0 ]]; then
|
if [[ $brlapi -eq 0 ]]; then
|
||||||
echo 'exec --no-startup-id xbrlapi --quiet'
|
echo 'exec --no-startup-id xbrlapi --quiet'
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user