diff --git a/homes/julian/features/i3/i3/scripts/open-messaging b/homes/julian/features/i3/i3/scripts/open-messaging deleted file mode 100755 index 4b21b26..0000000 --- a/homes/julian/features/i3/i3/scripts/open-messaging +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -start_if_not_running() -{ - program=$1 - pidof -sq $program - if [ "$?" -eq "1" ]; then - start_program $1 - else - echo "$program is already running" - fi -} - -start_program() -{ - program=$1 - echo "Starting $program..." - $program & > /dev/null -} - -i3-msg 'workspace 9; append_layout ~/.config/i3/workspace-messaging.json' -start_program nheko -sleep 0.1 -start_program telegram-desktop -sleep 0.1 -start_program thunderbird -sleep 0.1 diff --git a/homes/julian/features/i3/i3/scripts/pulse_popup b/homes/julian/features/i3/i3/scripts/pulse_popup deleted file mode 100755 index f0450fa..0000000 --- a/homes/julian/features/i3/i3/scripts/pulse_popup +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -HDMI_SINK="alsa_output.pci-0000_00_1f.3-platform-skl_hda_dsp_generic.HiFi__hw_sofhdadsp_3__sink" -LAPTOP_SINK="alsa_output.pci-0000_00_1f.3-platform-skl_hda_dsp_generic.HiFi__hw_sofhdadsp__sink" - -HDMI_ICON=$(pactl info | grep -q $HDMI_SINK && echo "checkbox") -LAPTOP_ICON=$(pactl info | grep -q $LAPTOP_SINK && echo "checkbox") - -HDMI_VOLUME=$(pactl get-sink-volume $HDMI_SINK | head -n 1 | awk '{print $5}') -LAPTOP_VOLUME=$(pactl get-sink-volume $LAPTOP_SINK | head -n 1 | awk '{print $5}') - -read -r -d '' CONF <