Update
This commit is contained in:
parent
3e73ff6aa2
commit
0b2e7237af
|
@ -1,5 +1,5 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Exec=$HOME/.local/userbin/key-sign.sh
|
Exec=/usr/bin/bash ~/.local/userbin/key-sign.sh
|
||||||
Icon=
|
Icon=
|
||||||
Name=key-sign.sh
|
Name=key-sign.sh
|
||||||
Path=
|
Path=
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Exec=$HOME/.local/userbin/reset-layout.sh
|
Exec=/usr/bin/bash ~/.local/userbin/reset-layout.sh
|
||||||
Icon=
|
Icon=
|
||||||
Name=reset-layout.sh
|
Name=reset-layout.sh
|
||||||
Path=
|
Path=
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Exec=$HOME/.local/userbin/set-default-web-browser.sh
|
Exec=/usr/bin/bash ~/.local/userbin/set-default-web-browser.sh
|
||||||
Icon=
|
Icon=
|
||||||
Name=set-default-web-browser.sh
|
Name=set-default-web-browser.sh
|
||||||
Path=
|
Path=
|
||||||
|
|
|
@ -8,7 +8,7 @@ else
|
||||||
echo "USER IS ROOT"
|
echo "USER IS ROOT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sleep 20
|
sleep 30
|
||||||
|
|
||||||
cd "/root"
|
cd "/root"
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ theme="com.github.Melawy.Melawy-round-gray.Nier-A2.desktop"
|
||||||
|
|
||||||
plasma-apply-lookandfeel -a "$theme" --resetLayout
|
plasma-apply-lookandfeel -a "$theme" --resetLayout
|
||||||
|
|
||||||
notify-send -a "Theme is" "$theme" "$(date '+%Y.%m.%d %H:%M:%S')"
|
notify-send -t 5000 -a "Theme is" "$theme" "$(date '+%Y.%m.%d %H:%M:%S')"
|
||||||
|
|
||||||
if [ "$(whoami)" != "liveuser" ]; then
|
if [ "$(whoami)" != "liveuser" ]; then
|
||||||
sleep 5
|
sleep 5
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
sleep 20
|
sleep 10
|
||||||
|
|
||||||
browser="firefox.desktop"
|
browser="firefox.desktop"
|
||||||
|
|
||||||
xdg-settings set default-web-browser "$browser"
|
xdg-settings set default-web-browser "$browser"
|
||||||
|
|
||||||
notify-send -a "Default browser is" "$browser" "$(date '+%Y.%m.%d %H:%M:%S')"
|
notify-send -t 5000 -a "Default browser is" "$browser" "$(date '+%Y.%m.%d %H:%M:%S')"
|
||||||
|
|
||||||
if [ "$(whoami)" != "liveuser" ]; then
|
if [ "$(whoami)" != "liveuser" ]; then
|
||||||
sleep 5
|
sleep 5
|
||||||
|
|
Loading…
Reference in New Issue