This commit is contained in:
stephan.raabe 2023-02-13 13:37:10 +01:00
parent 2d631106ac
commit 8eed0a5315
4 changed files with 17 additions and 16 deletions

4
gitpull.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
read -p "Do you really want to pull the lastest version? " c
git pull --rebase

View File

@ -1,8 +1,6 @@
#!/bin/sh #!/bin/sh
#
echo -e "Enter the git commit message: \c " read -p "Enter the git commit message: " comment
read comment
git add -A git add -A
git commit -m "$comment" git commit -m "$comment"
git push git push

View File

@ -171,27 +171,27 @@ screens = [
active=ColorC active=ColorC
), ),
widget.TextBox( widget.TextBox(
text='', text='|',
fontsize=14 fontsize=14
), ),
widget.WindowName( widget.WindowName(
fontsize=14 fontsize=14
), ),
widget.Systray(), widget.Systray(),
# widget.TextBox(
# text='SPT',
# desc='Spotify',
# mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e spt')},
# fontsize=14
# ),
widget.TextBox( widget.TextBox(
text='', text='Notes ',
desc='Spotify',
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e spt')},
fontsize=14
),
widget.TextBox(
text='',
desc='Notes', desc='Notes',
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e vim /home/raabe/notes.txt')}, mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e vim /home/raabe/notes.txt')},
fontsize=14 fontsize=14
), ),
widget.TextBox( widget.TextBox(
text='', text='|',
fontsize=14 fontsize=14
), ),
widget.CPU( widget.CPU(
@ -203,7 +203,7 @@ screens = [
fontsize=14 fontsize=14
), ),
widget.TextBox( widget.TextBox(
text='', text='|',
fontsize=14 fontsize=14
), ),
widget.Volume( widget.Volume(
@ -211,7 +211,7 @@ screens = [
fontsize=14 fontsize=14
), ),
widget.TextBox( widget.TextBox(
text='', text='|',
fontsize=14 fontsize=14
), ),
widget.CheckUpdates( widget.CheckUpdates(
@ -222,7 +222,7 @@ screens = [
mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e yay')} mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e yay')}
), ),
widget.TextBox( widget.TextBox(
text='', text='|',
fontsize=14 fontsize=14
), ),
widget.Clock( widget.Clock(
@ -234,7 +234,6 @@ screens = [
fontsize=14 fontsize=14
), ),
widget.QuickExit( widget.QuickExit(
default_text='',
countdown_start=3, countdown_start=3,
fontsize=14 fontsize=14
), ),