From fbe89c882a56961fa11f2a1a31cfa37b4203cc34 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Fri, 25 Mar 2022 18:49:40 +0100 Subject: [PATCH 1/5] =?UTF-8?q?Touchpad=20Einstellungen=20angepasst,=20Jap?= =?UTF-8?q?anische=20Tastatur=20erm=C3=B6glicht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qtile/.config/qtile/autostart.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qtile/.config/qtile/autostart.sh b/qtile/.config/qtile/autostart.sh index 7957b9e..fd801da 100755 --- a/qtile/.config/qtile/autostart.sh +++ b/qtile/.config/qtile/autostart.sh @@ -1,5 +1,7 @@ #!/bin/sh sleep 1& +xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Tapping Enabled" 1 +xinput set-prop "SynPS/2 Synaptics TouchPad" "libinput Natural Scrolling Enabled" 1 setxkbmap de& nitrogen --restore & bash .screenlayout/layout.sh & @@ -15,4 +17,5 @@ cbatticon & nm-applet & blueman-applet & thunderbird & -clickup & \ No newline at end of file +clickup & +fcitx -d& \ No newline at end of file From ef5d3ac970be3650d0f2e32847376b12b78d0cff Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Thu, 3 Mar 2022 10:55:06 +0100 Subject: [PATCH 2/5] =?UTF-8?q?dolibarr=20zur=20Landing=20Page=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- browser-landing-page/home.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browser-landing-page/home.html b/browser-landing-page/home.html index d46fd2a..2087383 100644 --- a/browser-landing-page/home.html +++ b/browser-landing-page/home.html @@ -59,7 +59,8 @@ body {

KA-RaceIng

Wiki

Gitlab

- Cloud
+ Cloud

+ Dolibarr

KIT

From f6e21d27eefb1ed2bc71e5619f43a7a514cfb3df Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Wed, 4 May 2022 10:21:38 +0200 Subject: [PATCH 3/5] added Win + P shortcut for ARandR --- qtile/.config/qtile/Groups.py | 14 +++++++++++++- qtile/.config/qtile/Keys.py | 1 - 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/qtile/.config/qtile/Groups.py b/qtile/.config/qtile/Groups.py index 5792536..7e89474 100644 --- a/qtile/.config/qtile/Groups.py +++ b/qtile/.config/qtile/Groups.py @@ -2,7 +2,7 @@ from typing import Match from libqtile.config import Group, ScratchPad, DropDown, Key, Match from libqtile.command import lazy -from defines import term +from defines import mod,term from Keys import keys group_names = [("","Home", 'h',{'layout': 'monadtall'}), @@ -23,6 +23,16 @@ groups = [Group(icon, **kwargs) for icon, name, key, kwargs in group_names] groups.append( ScratchPad("scratchpad",[ + DropDown( + 'ARandR', + 'arandr', + height = 0.5, + width = 0.8, + x = .1, + on_focus_lost_hide=True, + opacity=1, + match = Match(wm_class='arandr') + ), DropDown( "term", term, @@ -106,6 +116,8 @@ for (icon,name,key, kwargs) in group_names: ]) keys.extend([ + Key([mod],'p',lazy.group['scratchpad'].dropdown_toggle('ARandR'), + desc="open the dropdown for ARandR"), Key(['mod1','control'],'space',lazy.group['scratchpad'].dropdown_toggle('term'), desc="open the dropdown terminal"), Key(['control','shift'],'Escape',lazy.group['scratchpad'].dropdown_toggle('htop'), diff --git a/qtile/.config/qtile/Keys.py b/qtile/.config/qtile/Keys.py index f83dcea..18d04ac 100644 --- a/qtile/.config/qtile/Keys.py +++ b/qtile/.config/qtile/Keys.py @@ -51,7 +51,6 @@ keys = [ #rofi Key([mod],'Return',lazy.spawn("rofi -show drun -show-icons -modi drun,calc,ssh"),desc="launch rofi (drun)"), - Key([mod],'p',lazy.spawn("bwmenu --auto-lock -1"),desc="launch bwmenu"), # audio hotkeys Key([], 'XF86AudioRaiseVolume', lazy.spawn('pulseaudio-ctl up 5'), desc="increase speaker volume"), From 77ba5a44de4a81595cd8a0e13291bfc87ad88b24 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Fri, 2 Sep 2022 22:31:36 +0200 Subject: [PATCH 4/5] improved layout --- qtile/.config/qtile/Widgets.py | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/qtile/.config/qtile/Widgets.py b/qtile/.config/qtile/Widgets.py index 0c1c6e9..9782a75 100644 --- a/qtile/.config/qtile/Widgets.py +++ b/qtile/.config/qtile/Widgets.py @@ -16,7 +16,6 @@ def powerline_arrow(direction, color1, color2,size): borderwidth=0, padding=0 ), - widget.Sep(padding=5, linewidth=0, background=color2), ] else: return [ @@ -41,13 +40,13 @@ def Left_widgets(size,fontsize,prompt=False): widget.TextBox( text='', foreground=light_foreground_color, - fontsize=fontsize+14, - margin=5, + fontsize=fontsize, + # margin=5, background=blue_color ), *powerline_arrow('r',blue_color,base_color,size), widget.GroupBox( - fontsize=fontsize+10, + fontsize=fontsize, rounded=False, active=light_foreground_color, inactive=dark_foreground_color, @@ -72,7 +71,7 @@ def volume_widget(prev_color,color,size,fontsize): foreground=light_foreground_color, background=color, emoji=True, - fontsize=fontsize, + fontsize=fontsize - 4, ), widget.Volume( foreground=light_foreground_color, @@ -84,7 +83,7 @@ def volume_widget(prev_color,color,size,fontsize): foreground=light_foreground_color, background=color, emoji=True, - fontsize=fontsize + 6, + fontsize=fontsize, ), Mic( foreground=light_foreground_color, @@ -179,7 +178,7 @@ def end_widgets(prev_color,size,fontsize): text='ﭷ', foreground=light_foreground_color, background=purple_color, - fontsize=fontsize+6 + fontsize=fontsize ), widget.Clock( foreground=light_foreground_color, @@ -215,13 +214,13 @@ def Laptop_widgets(prev_color,last_color,size,fontsize): text='', foreground=light_foreground_color, background=green_color, - fontsize=fontsize+6 + fontsize=fontsize ), widget.CPU( foreground=light_foreground_color, background=green_color, fontsize=fontsize, - format='{load_percent}% @ {freq_current}GHz', + format='{load_percent}%', mouse_callbacks = launch_htop, ), *powerline_arrow('l',green_color,yellow_color,size), @@ -229,13 +228,13 @@ def Laptop_widgets(prev_color,last_color,size,fontsize): text='﬙', foreground=light_foreground_color, background=yellow_color, - fontsize=fontsize+6 + fontsize=fontsize ), MemoryC( foreground=light_foreground_color, background=yellow_color, fontsize=fontsize, - format=" {MemUsed}GB|{SwapUsed}GB", + format="{MemUsed}GB|{SwapUsed}GB", mouse_callbacks = launch_htop, ), *powerline_arrow('l',yellow_color,last_color,size), @@ -243,7 +242,7 @@ def Laptop_widgets(prev_color,last_color,size,fontsize): text='', foreground=light_foreground_color, background=blue_color, - fontsize=fontsize+6 + fontsize=fontsize ), widget.Net( background=last_color, From e824820653e4601107db7e31dea6ae30857794e7 Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Sat, 10 Sep 2022 00:42:19 +0200 Subject: [PATCH 5/5] added alias for docker --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 0aa2fd5..8e501eb 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -139,6 +139,9 @@ alias ftemplate='git fetch template' alias mtemplate='git merge template/master --allow-unrelated-histories' alias log='git log' +# docker +alias docker='sudo docker' # use normal docker command but keep sudo requirement + ### AUTOSTART ### #neofetch