Initial release for Sauropod

This commit is contained in:
Aleksey Samoilov 2025-06-08 14:36:27 +04:00
parent 20798d65cf
commit 8a73900616
11 changed files with 104 additions and 14 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
tileos-settings-qtile (2.0.0~tileos) unstable; urgency=medium
* Initial release for Sauropod
-- Aleksey Samoilov <samoilov.lex@gmail.com> Sun, 08 Jun 2025 14:35:52 +0400
tileos-settings-qtile (1.1.5~tileos) unstable; urgency=medium tileos-settings-qtile (1.1.5~tileos) unstable; urgency=medium
* Updates from Sway edition * Updates from Sway edition

View file

@ -0,0 +1,15 @@
{
adapter: ""
gsm-apn: ""
gsm-number: ""
keybindings: {}
receive-dir: ""
theme: {
AdapterPowered: "powderblue",
AdapterNotPowered: "lightcoral",
AdapterPairable: "thistle",
AdapterScanning: "mistyrose",
DevicePropertyDiscovered: "mistyrose",
DevicePropertyConnected: "powderblue"
}
}

View file

@ -0,0 +1,32 @@
appearance.calendarview=monthly
appearance.compactpanels=no
appearance.defaultpanel=calendar
appearance.layout=1
appearance.headerline=yes
appearance.eventseparator=yes
appearance.dayseparator=yes
appearance.emptyline=yes
appearance.emptyday=--
appearance.notifybar=yes
appearance.sidebarwidth=27
appearance.theme=blue on default
appearance.todoview=hide-completed
appearance.headingpos=right-justified
daemon.enable=yes
daemon.log=no
format.inputdate=1
format.notifydate=%a %F
format.notifytime=%T
format.outputdate=%D
format.dayheading=%B %e, %Y
general.autogc=no
general.autosave=yes
general.confirmdelete=yes
general.confirmquit=no
general.firstdayofweek=monday
general.multipledays=yes
general.periodicsave=0
general.systemevents=yes
notification.command=printf '\a'
notification.notifyall=flagged-only
notification.warning=300

View file

@ -17,7 +17,7 @@
# #
# If this option is set to mouse or keyboard, the monitor option # If this option is set to mouse or keyboard, the monitor option
# will be ignored. # will be ignored.
follow = none follow = mouse
### Geometry ### ### Geometry ###
@ -329,7 +329,7 @@
[urgency_critical] [urgency_critical]
background = "#24273A" background = "#24273A"
foreground = "#CAD3F5" foreground = "#CAD3F5"
frame_color = "#F5A97F" frame_color = "#ED6C13"
timeout = 0 timeout = 0
# Icon for notifications with critical urgency, uncomment to enable # Icon for notifications with critical urgency, uncomment to enable
#default_icon = /path/to/icon #default_icon = /path/to/icon

View file

@ -0,0 +1,2 @@
#!/bin/sh
/usr/share/sway/scripts/sbdp.py $HOME/.config/sway/config | jq --raw-output 'sort_by(.category) | .[] | .action + ": <b>" + .keybinding + "</b>"'

View file

@ -0,0 +1,13 @@
window {
background-color: @theme_bg_color;
font-size: medium;
color: #cad3f5;
}
#box-inner {
border-radius: 0px;
border-style: solid;
border-width: 2px;
border-color: #8aadf4;
padding: 10px;
}

View file

@ -0,0 +1,4 @@
[Default]
save_dir=${XDG_PICTURES_DIR:-$HOME/Pictures}
show_panel=true
early_exit=true

View file

@ -1,6 +1,8 @@
timeout 240 'light -G > /tmp/brightness && light -S 10' resume 'light -S $([ -f /tmp/brightness ] && cat /tmp/brightness || echo 100%)' timeout 240 'brightnessctl -s && brightnessctl set 10' resume 'brightnessctl -r'
timeout 300 ~/.config/swaylock/lock.sh timeout 300 '/usr/share/qtile/scripts/lock.sh'
timeout 600 'wlopm --off \*' resume 'wlopm --on \*' timeout 600 '/usr/share/qtile/scripts/kbd-backlight.sh off && timeout 600 'wlopm --off \*' resume '/usr/share/qtile/scripts/kbd-backlight.sh on && 'wlopm --on \*'
timeout 900 '[ "$(acpi -b | grep Discharging)" != "" ] && systemctl suspend'
timeout 3600 '[ "$(acpi -b | grep Discharging)" = "" ] && systemctl suspend'
before-sleep 'playerctl pause' before-sleep 'playerctl pause'
before-sleep ~/.config/swaylock/lock.sh before-sleep '/usr/share/qtile/scripts/lock.sh && sleep 2'
lock ~/.config/swaylock/lock.sh after-resume '/usr/share/qtile/scripts/kbd-backlight.sh on && 'wlopm --on \*' && brightnessctl -r'

View file

@ -15,4 +15,4 @@ ring-color=c6a0f6
ring-ver-color=7dc4e4 ring-ver-color=7dc4e4
ring-wrong-color=ee99a0 ring-wrong-color=ee99a0
ring-clear-color=8aadf4 ring-clear-color=8aadf4
ring-caps-lock-color=f5a97f ring-caps-lock-color=ed6c13

View file

@ -0,0 +1,11 @@
#!/usr/bin/env sh
set -x
case $1'' in
'on')
brightnessctl -r -d "*kbd_backlight"
;;
'off')
brightnessctl -s -d "*kbd_backlight" && brightnessctl -d "*kbd_backlight" set 0
;;
esac

View file

@ -1,10 +1,15 @@
#!/bin/bash #!/bin/bash
USER_SCRIPT="$HOME/.config/swaylock/lock.sh" # Swaylock run's with additional features, e.g. adding screenshot to background
GLOB_SCRIPT="/usr/share/sway/scripts/swaylock.sh" SWAYLOCK_USER_SCRIPT="$HOME/.config/swaylock/lock.sh"
SWAYLOCK_GLOB_SCRIPT="/usr/share/qtile/scripts/swaylock.sh"
if [[ -x "$USER_SCRIPT" ]]; then if [ -x "$(command -v gtklock)" ]; then
"$USER_SCRIPT" gtklock --daemonize --follow-focus --idle-hide --start-hidden
else elif [ -x "$(command -v swaylock)" ]; then
"$GLOB_SCRIPT" if [[ -x "$SWAYLOCK_USER_SCRIPT" ]]; then
"$SWAYLOCK_USER_SCRIPT"
else
"$SWAYLOCK_GLOB_SCRIPT"
fi
fi fi