diff --git a/debian/changelog b/debian/changelog index 83ec709..94c7c50 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +regolith-ftue (2.1.0-1) focal; urgency=medium + + [ Ken Gilmer ] + * Rename term profile script for consistency + * Switch to ilia over remontoire for keybinding viewer + + -- Regolith Linux Sun, 31 Oct 2021 15:07:53 -0700 + regolith-ftue (2.0.5-1) focal; urgency=medium [ Ken Gilmer ] diff --git a/debian/control b/debian/control index 2034d96..695d951 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Homepage: https://github.com/regolith-linux/regolith-ftue Package: regolith-ftue Architecture: any Depends: ${misc:Depends}, - remontoire, + ilia, uuid-runtime Recommends: gnome-terminal Conflicts: regolith-conky-config diff --git a/debian/install b/debian/install index 5f6f187..8f28312 100644 --- a/debian/install +++ b/debian/install @@ -1,3 +1,2 @@ regolith-ftue /usr/bin/ -remontoire-toggle /usr/bin/ -create-regolith-term-profile /usr/share/regolith-ftue \ No newline at end of file +regolith-init-term-profile /usr/share/regolith-ftue \ No newline at end of file diff --git a/regolith-ftue b/regolith-ftue index efa6591..c81daff 100755 --- a/regolith-ftue +++ b/regolith-ftue @@ -8,14 +8,14 @@ TERM_PROFILE_PATH="$UPDATE_FLAG_DIR/term-profile" TERM_PROFILE_ENABLED="$(xrescat gnome.terminal.update true)" if [ ! -f "$UPDATE_FLAG_PATH" ]; then - /usr/bin/remontoire-toggle + ilia -p keybindings & mkdir -p "$UPDATE_FLAG_DIR" touch "$UPDATE_FLAG_PATH" fi if [[ ! -z "$(command -v gnome-terminal 2> /dev/null)" && "$TERM_PROFILE_ENABLED" == "true" && ! -f "$TERM_PROFILE_PATH" ]]; then - /usr/share/regolith-ftue/create-regolith-term-profile + /usr/share/regolith-ftue/regolith-init-term-profile touch "$TERM_PROFILE_PATH" fi diff --git a/remontoire-toggle b/remontoire-toggle deleted file mode 100755 index aca9544..0000000 --- a/remontoire-toggle +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -# If remontoire is running, kill it. Otherwise start it. - -remontoire_PID=$(pidof remontoire) - -if [ -z "$remontoire_PID" ] -then - /usr/bin/remontoire -s "$(printenv I3SOCK)" & -else - kill "$remontoire_PID" -fi