diff --git a/gitpull.sh b/gitpull.sh new file mode 100755 index 0000000..e622e0c --- /dev/null +++ b/gitpull.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +read -p "Do you really want to pull the lastest version? " c +git pull --rebase diff --git a/gitpush.sh b/gitpush.sh index 2bebcd0..25cf4ea 100755 --- a/gitpush.sh +++ b/gitpush.sh @@ -1,8 +1,6 @@ #!/bin/sh -# -echo -e "Enter the git commit message: \c " -read comment +read -p "Enter the git commit message: " comment git add -A git commit -m "$comment" git push diff --git a/qtile/__pycache__/config.cpython-310.pyc b/qtile/__pycache__/config.cpython-310.pyc index d3e9bc5..616e296 100644 Binary files a/qtile/__pycache__/config.cpython-310.pyc and b/qtile/__pycache__/config.cpython-310.pyc differ diff --git a/qtile/config.py b/qtile/config.py index ac9ce83..732569e 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -171,27 +171,27 @@ screens = [ active=ColorC ), widget.TextBox( - text='', + text='|', fontsize=14 ), widget.WindowName( fontsize=14 ), widget.Systray(), +# widget.TextBox( +# text='SPT', +# desc='Spotify', +# mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e spt')}, +# fontsize=14 +# ), widget.TextBox( - text=' ', - desc='Spotify', - mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e spt')}, - fontsize=14 - ), - widget.TextBox( - text=' ', + text='Notes ', desc='Notes', mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e vim /home/raabe/notes.txt')}, fontsize=14 ), widget.TextBox( - text='', + text='|', fontsize=14 ), widget.CPU( @@ -203,7 +203,7 @@ screens = [ fontsize=14 ), widget.TextBox( - text='', + text='|', fontsize=14 ), widget.Volume( @@ -211,7 +211,7 @@ screens = [ fontsize=14 ), widget.TextBox( - text='', + text='|', fontsize=14 ), widget.CheckUpdates( @@ -222,7 +222,7 @@ screens = [ mouse_callbacks={"Button1": lambda: qtile.cmd_spawn(terminal + ' -e yay')} ), widget.TextBox( - text='', + text='|', fontsize=14 ), widget.Clock( @@ -234,7 +234,6 @@ screens = [ fontsize=14 ), widget.QuickExit( - default_text=' ', countdown_start=3, fontsize=14 ),