This commit is contained in:
Stephan Raabe
2024-01-14 12:04:52 +01:00
parent 222b23bb4c
commit c0ce4ec0f9
15 changed files with 33 additions and 2 deletions

View File

@@ -1,2 +0,0 @@
name="Browser"
order=1

View File

@@ -1,23 +0,0 @@
#!/bin/bash
_getHeader "$name" "$author"
echo "Define the start command to start the browser (Default: chromium)."
# Define File
targetFile="$HOME/dotfiles/.settings/browser.sh"
# Current Value
echo "Current Value: $(cat $targetFile)"
# Select Value
customvalue=$(gum input --placeholder "Command to start")
if [ ! -z $customvalue ] ;then
# Write into file
echo "$customvalue" > $targetFile
else
echo "Please define a command"
sleep 1
fi
_goBack

View File

@@ -1,3 +0,0 @@
name="Quick Launcher"
order=1
author="Stephan Raabe ML4W"

View File

@@ -1,2 +0,0 @@
name="Filemanager"
order=1

View File

@@ -1,23 +0,0 @@
#!/bin/bash
_getHeader "$name" "$author"
echo "Define the start command to start the filemanager (Default: thunar)."
# Define File
targetFile="$HOME/dotfiles/.settings/filemanager.sh"
# Current Value
echo "Current Value: $(cat $targetFile)"
# Select Value
customvalue=$(gum input --placeholder "Command to start")
if [ ! -z $customvalue ] ;then
# Write into file
echo "$customvalue" > $targetFile
else
echo "Please define a command"
sleep 1
fi
_goBack

View File

@@ -1,2 +0,0 @@
#!/bin/bash
_getHeader "$name"

View File

@@ -1,2 +0,0 @@
name="Network"
order=1

View File

@@ -1,25 +0,0 @@
#!/bin/bash
_getHeader "$name" "$author"
echo "Define the start command to start the networkmanager (Must be installed on your system)."
echo "(Default: nm-connection-editor)"
echo "Possible values: alacritty -e nmtui, nm-connection-editor, etc."
# Define File
targetFile="$HOME/dotfiles/.settings/networkmanager.sh"
# Current Value
echo "Current Value: $(cat $targetFile)"
# Select Value
customvalue=$(gum input --placeholder "Command to start")
if [ ! -z $customvalue ] ;then
# Write into file
echo "$customvalue" > $targetFile
else
echo "Please define a command"
sleep 1
fi
_goBack

View File

@@ -1,2 +0,0 @@
name="Software"
order=1

View File

@@ -1,23 +0,0 @@
#!/bin/bash
_getHeader "$name" "$author"
echo "Define the start command to start the software manager (Default: alacritty -e pacseek)."
# Define File
targetFile="$HOME/dotfiles/.settings/software.sh"
# Current Value
echo "Current Value: $(cat $targetFile)"
# Select Value
customvalue=$(gum input --placeholder "Command to start")
if [ ! -z $customvalue ] ;then
# Write into file
echo "$customvalue" > $targetFile
else
echo "Please define a command"
sleep 1
fi
_goBack