1
0
Fork 0

Compare commits

...

3 Commits

Author SHA1 Message Date
rhjr 447d177249 Changed: default from super to alt 2025-05-15 14:55:03 +02:00
rhjr adbf560f47 Added: custom minimal waybar configuration 2025-05-15 14:54:11 +02:00
rhjr 89842d1fe6 Added: poweroff command 2025-05-15 14:53:33 +02:00
4 changed files with 51 additions and 4 deletions

View File

@ -83,6 +83,7 @@ export WLR_NO_HARDWARE_CURSORS=1
# aliases
alias config='/usr/bin/git --git-dir=$HOME/.config.remote/ --work-tree=$HOME'
alias poweroff='shutdown -h now'
alias cls='clear'
alias ls='ls -laA --group-directories-first --color=auto'

View File

@ -7,7 +7,7 @@
### Variables
#
# Logo key. Use Mod1 for Alt.
set $mod Mod4
set $mod Mod1
# Home row direction keys, like vim
set $left h
set $down j

View File

@ -7,7 +7,26 @@
"margin-top": 10,
"margin-bottom": 10,
"network": {
"format-wifi": "{icon}"
"modules-left": [
"sway/workspaces"
],
"modules-right": [
"clock"
],
"sway/workspaces": {
"disable-scroll": true,
"persisten_workspace": {
"1": [],
"2": [],
"3": []
}
},
"clock": {
"timezone": "Europe/Amsterdam",
"format": "{:%H\n%M\n%S}",
"interval": 1
}
}

View File

@ -1,4 +1,31 @@
* {
border: none;
text-shadow: none;
box-shadow: none;
border-radius: 0;
font-weight: 600;
font-size: 12.7px;
margin: 0;
padding: 0;
}
#waybar {
background-color: rgba(28, 28, 28, 1);
border-radius: 5px;
}
#workspaces {
margin-top: 5px;
padding: 0;
}
#workspaces button {
color: #FFFFFF;
margin: 0;
padding: 0;
}
#clock {
margin-bottom: 5px;
color: #FFFFFF;
}